2

图形初学者在这里!我试图在我的设备上显示一个简单的图像,但什么都没有出现,并且日志没有显示任何错误。程序运行但没有任何反应。

这是我的代码

protected void onDraw(Canvas canvas) {
    canvas.drawBitmap(BitmapFactory.decodeResource(getResources(),R.drawable.droid_1), 10, 10, null);
}

和这个方法的 cal

public void run() {
        Canvas canvas;
        long tickCount = 0;
        Log.d(TAG, "starting game loop");
        while (running) {
            canvas = null;
            //try locking the canvas for exclusive pixel editing on the surface
            try
            {
                canvas = this.surfaceHolder.lockCanvas();
                synchronized (surfaceHolder)
                {
                    //update the game state
                    //draws the canvas on the panel
                    this.gamePanel.draw(canvas);                    
                }

            }
            finally
            {
                //in case of an exception the surface is not left in
                //an inconsistent state
                if (canvas != null)
                {
                    surfaceHolder.unlockCanvasAndPost(canvas);
                }
            }

图片确实存在于 /res/drawablemdpi 目录中。

谢谢你的帮助!

编辑:

感谢您的建议。在发布之前,我已经访问了很多链接。我最终自己找到了答案。

那里调用的方法 onDraw

this.gamePanel.draw(canvas);    

我故意和错误地用“draw”纠正,因为它引发了错误,应该站在onDraw上。编译器实际上并没有调用我的重写方法,而是调用了原来的方法。

解决方案是禁用此错误上的标记(右键单击),强制它调用我自己的方法。

希望我清楚。不管怎么说,还是要谢谢你。

4

1 回答 1

0

不知道自己怎么做,但是有大量的资源可以告诉你它是如何完成的。

如何使用 Java 代码在 Android 中显示图像

如何在 Android 应用程序中显示图像

如何显示图片?

在安卓应用中显示图片

http://www.mkyong.com/android/android-imageview-example/

http://www.javacodegeeks.com/2011/07/android-game-development-displaying.html

这些只是来自 guick google 的一小部分

于 2013-08-17T12:04:33.270 回答