シンプルな Android アニメーションでスレッドを実装しようとしています。sleep() でエラーが発生しました - メソッドが必要だというメッセージが表示されます。おそらく明らかな解決策があることを私は知っています。私のアプリは、円形に動くボールをランダムな場所に配置するだけです。私が望むのは、ランダムな場所に図形を配置し続けることです。とにかく、誰かが私のスレッドで何が間違っているのか教えてもらえますか? ありがとう。
public class DrawingTheBall extends View {
Bitmap bball;
Random randX, randY;
double theta;
Handler m_handler;
Runnable m_handlerTask; //for some reason I get a syntax error here
m_handler = new Handler();
public DrawingTheBall(Context context) {
super(context);
// TODO Auto-generated constructor stub
bball = BitmapFactory.decodeResource(getResources(), R.drawable.blueball);
//randX = 1 + (int)(Math.random()*500);
//randY = 1 + (int)(Math.random()*500);
randX = new Random();
randY = new Random();
theta = 45;
new Thread(this).start();
}
public void onDraw(Canvas canvas){
super.onDraw(canvas);
//Radius, angle, and coordinates for circle motion
float a = 50;
float b = 50;
float r = 50;
int x = 0;
int y = 0;
theta = theta + Math.toRadians(2);
//move ball in circle
if(x < canvas.getWidth()){
x = randX.nextInt() + (int) (a +r*Math.cos(theta));
}else{
x = 0;
}
if(y < canvas.getHeight()){
y = randY.nextInt() + (int) (b +r*Math.sin(theta));
}else{
y = 0;
}
Paint p = new Paint();
}
m_handlerTask = new Runnable()
{
@Override
public void run() {
// do something
m_handler.postDelayed(m_handlerTask, 1000);
invalidate();
}
};
m_handlerTask.run();
} }