こんにちは、スレッドを使用して射撃システムを機能させようとしています。空間攻撃用のボタンがあり、20秒ごとに使用できます。コードに従って実行しようとしました:
ballatack.setImageResource(R.drawable.buttonof);
Thread timer2 = new Thread(){
public void run(){
try{
sleep(5000);
}catch(InterruptedException e){
e.printStackTrace();
}finally{
ballatack.setImageResource(R.drawable.buttonof);
}
}
};
timer2.start();
しかし、それは機能しません。Eclipseは、すべてが正しいとは言いませんが、エミュレーターを実行すると機能しません