0

老实说,我很难理解为什么这不起作用。尝试使用布局中的 SurfaceView 和要绘制的线程将简单的 PNG 绘制到屏幕上,而不是覆盖 onDraw 函数。它与 LunarLander 示例项目的实现本质上完全相同(我几乎沮丧地撕掉了整个代码集)。

我已经通过日志对其进行了测试,我知道精灵正在被“绘制”到画布上,但窗口中没有显示任何内容。

这是代码,希望它不会太长(去掉不重要的部分):

activity_pannenkoekenhuis.xml(布局/)

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<com.example.pannenkoekenhuis.MainView
    android:id="@+id/pannenkoekenhuis_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".Pannenkoekenhuis" >
</RelativeLayout>

</FrameLayout>

主视图(SurfaceView):

public class MainView extends SurfaceView implements SurfaceHolder.Callback {

class MainThread extends Thread {
    SurfaceHolder surfaceHolder;
    Context context;
    Handler handler;

    HandleResources hResources;
    HandleGame hGame;

    public MainThread(SurfaceHolder surfaceHolder, Context context,
            Handler handler) {
        this.surfaceHolder = surfaceHolder;
        this.context = context;
        this.handler = handler;
        hResources = new HandleResources(context);
        hGame = new HandleGame();

        init();
    }

    @Override
    public void run() {
        while (true) {
            Canvas canvas = null;
            try {
                canvas = surfaceHolder.lockCanvas(null);
                synchronized (surfaceHolder) {
                                            Drawable d = context.getResources().getDrawable(R.drawable.s_char);
                    d.draw(canvas);
                }
            } finally {
                if (canvas != null) {
                    surfaceHolder.unlockCanvasAndPost(canvas);
                }
            }
        }
    }
}

MainThread thread;

public MainView(Context context, AttributeSet attrs) {
    super(context, attrs);

    SurfaceHolder surfaceHolder = getHolder();
    getHolder().addCallback(this);

    thread = new MainThread(surfaceHolder, context, new Handler());

    setFocusable(true);
}
}

提前致谢。

4

1 回答 1

1

嘎,想通了。出于某种原因需要删除 setBackgroundColor(),因为它可能正在绘制图形。愚蠢的错误。

于 2012-10-19T21:12:48.640 回答