簡體   English   中英

Android SurfaceView顯示黑屏

[英]Android SurfaceView shows black screen

我試圖在表面視圖上繪制,但是出現黑屏。 我的xml布局:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" android:layout_height="match_parent">
    <com.example.surfaceview.MySurface android:id="@+id/padview" 
        android:layout_width="match_parent" android:layout_height="match_parent" />
</FrameLayout>

我的代碼的重要部分:MySurface.java

公共類MySurface擴展了SurfaceView實現的SurfaceHolder.Callback {

public DrawingThread thread;

public MySurface(Context context, AttributeSet attrs) {
    super(context, attrs);
    SurfaceHolder surfaceholder = getHolder();
    surfaceholder.addCallback(this);

    thread = new DrawingThread(surfaceholder, context, new Handler() {
        @Override
        public void handleMessage(Message m) {
            // Do some handle thing
        }
    });

    setFocusable(true);
}

@Override
public void surfaceChanged(SurfaceHolder tholder, int format, int width, int height) {
    thread.setSurfaceSize(width, height);
    thread.holder = tholder;
}

@Override
public void surfaceCreated(SurfaceHolder holder) {
    thread.running = true;
    thread.start();
}

@Override
public void surfaceDestroyed(SurfaceHolder holder) {
    boolean retry = true;
    thread.running = false;
    while(retry) {
        try {
            thread.join();
            retry = false;
        } catch (InterruptedException e) {
        }
    }
}

public Thread getThread() {
    return thread;
}

public class DrawingThread extends Thread {
    private SurfaceHolder holder;
    private Context context;
    private Handler handle;
    private Paint background;
    private Rect blank;

    public boolean running;
    public boolean created;

    public int canvasheight;
    public int canvaswidth;

    public PadThread(SurfaceHolder tholder, Context tcontext, Handler thandler) {
        holder = tholder;
        context = tcontext;
        handle = thandler;

        // Temporary canvas dimentions
        canvaswidth = 1;
        canvasheight = 1;

        running = false;
        created = false;

        background = new Paint();
        background.setColor(R.color.white);
        blank = new Rect(0, 0, canvaswidth, canvasheight);
    }

    @Override
    public void run() {
        Log.d("SurfaceView Test", "Drawing thread run");
        while(running) {
            Canvas canvas = null;
            try {
                canvas = holder.lockCanvas();
                synchronized(holder) {
                    // update object states
                    // get user input gestures
                    drawing(canvas);
                }
            } finally {
                if(canvas != null) {
                    holder.unlockCanvasAndPost(canvas);
                }
            }
        }
    }

    private void drawing(Canvas canvas) {
        // Clear screen
        canvas.drawRect(blank, background);

        // Draw Things
    }

    public void setSurfaceSize(int width, int height) {
        synchronized(holder) {
            canvaswidth = width;
            canvasheight = height;

            // New background rect
            blank.set(0, 0, canvaswidth, canvasheight);
        }
    }
}

}

該代碼基於http://developer.android.com/resources/samples/LunarLander/index.html上的Google Lunar Landar SurfaceView示例。

我知道通過日志記錄可以到達所有代碼。

更改繪圖功能

background.setColor(Color.RED); canvas.drawRect(new Rect(10,10,100,100),背景);

(有顏色和矩形的測試值)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM