求大神帮忙,这段代码在哪有设置背景图片的,俄罗斯方块小游戏

求大神帮忙,这个俄罗斯方块程序在哪有设置新游戏背景图片的。另外运行以后新游戏界面底色如何清除。。链接在下面求求大神帮帮忙。。http://www.linuxidc.com/Linux/2011-08/41891.htm

手机上看不了,直接贴图不好啊

public static Bitmap createImage(Drawable tile, int w, int h) {
Bitmap bitmap = Bitmap.createBitmap(w, h, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap);
tile.setBounds(0, 0, w, h);
tile.draw(canvas);
return bitmap;
}
这块如何改成用图片表示的。