こんにちは、ゲームで何かが破壊されるたびに、サーフェス ビュー スレッド内のスレッド クラスを使用して爆発アニメーションの新しいオブジェクトを作成します。短時間に複数の船を破壊した後、アプリはアクティビティを終了します。どうしてこれなの?
explosion ex = new explosion(x,y);
ex.start();
と
class explosion extends Thread implements Runnable{
private long startTime;
private int num = 0;
private int x;
private int y;
public explosion(int mx, int my){
x = mx;
y = my;
startTime = System.currentTimeMillis();
}
public void run(){
while(num < 3){
long millis = System.currentTimeMillis();
canvas.drawBitmap(explosions.get(num),x,y,null);
if(millis - startTime > 50){
startTime = System.currentTimeMillis();
num++;
Log.d("Explosion","Animate");
}
}
Log.d("Explosion","End Thread");
}
};