別のスレッドで描画を実装する最初のライブ壁紙を作成しました。これで、仕事をする WallpaperService と WallpaperPainter ができました。問題は、一部のデバイスIllegalArgumentException
で inunlockCanvasAndPost
メソッドを取得していることです (Samsung Note がその 1 つです)。見つけたすべての推奨事項を読みましたが、そのバグを修正できませんでした。サーフェスが破棄されたときに呼び出されるように見えるunlockCanvasAndPost
ため、キャンバスは無効です。コードの重要な部分は次のとおりです。
壁紙サービスでは:
@Override
public void onSurfaceChanged(SurfaceHolder holder, int format, int width,
int height) {
super.onSurfaceChanged(holder, format, width, height);
painting.setSurfaceSize(width, height);
}
@Override
public void onSurfaceCreated(SurfaceHolder holder) {
super.onSurfaceCreated(holder);
painting.start();
}
@Override
public void onSurfaceDestroyed(SurfaceHolder holder) {
boolean retry = true;
painting.stopPainting();
while (retry) {
try {
painting.join();
retry = false;
} catch (InterruptedException e) { }
}
super.onSurfaceDestroyed(holder);
}
塗装スレッドで:
public void stopPainting() {
this.run = false;
synchronized(this) {
this.notify();
}
}
public void run() {
this.run = true;
Canvas c = null;
while (run) {
try {
synchronized (this) {
Thread.sleep(50);
c = this.surfaceHolder.lockCanvas();
doDraw(c);
}
} catch (InterruptedException e) {
e.printStackTrace();
} finally {
if (c != null) {
this.surfaceHolder.unlockCanvasAndPost(c); // << -- HERE IS THE PROBLEM
}
}
// if pause...
synchronized (this) {
if (wait) {
try {
wait();
} catch (Exception e) { }
}
}
}
}
誰が私が間違っているのか手がかりを教えてもらえますか? 私はJavaとAndroidの両方が初めてです。