2
我正在尋找一種方法來從線程中調用invalidate方法。基本上我想要做的就是從DrawThread
調用onDraw
方法。從線程中調用invalidate方法
protected void onDraw(Canvas canvas) {
// Drawing commands go here
canvas.drawArc(oval, strt, arc, true, cPaint);
while(i<90)
{
canvas.drawText(z,300,300, tPaint);
break;
}
class DrawThread extends Thread
{
GameView a;
Canvas canvas;
DrawThread(GameView a)
{
this.a=a;
start();
}
public void run()
{
a.flag2=true;
while(a.flag2)
{
try
{
sleep(200);
}
catch(Exception e)
{
}
if(!a.flag1)
{
a.x+=10;
if(!a.flag3)
{
a.strt-=15;
a.arc+=15;
}
else
{
a.strt+=15;
a.arc-=15;
}
}
if(a.flag1)
{
a.x-=10;
if(!a.flag3)
a.arc+=15;
if(a.flag3)
a.arc-=15;
}
if(a.x==600)
{
a.y+=60;
a.flag1=true;
a.strt=180;
a.arc=315;
}
if(a.x==30)
{
a.y+=60;
a.flag1=false;
a.strt=45;
a.arc=315;
}
if(a.y>=600)
{
a.y=60;
}
if(a.strt==0 || a.arc==360)
{
a.flag3=true;
}
if(a.strt==45 || a.arc==315)
{
a.flag3=false;
}
if(a.n1==a.x&&a.n2==a.y)
{
a.i+=1;
a.n1 = Math.random()*10;
a.n2 = Math.random()*60;
}
a.invalidate();
}
}
}
先生我如何附上了一個窗口我的觀點? – user2586942
查看窗口?你可以使用'setContentView(myview)MyView myview = new MyView();'MyView是一個類,然後是外觀'View'。 – Raghunandan
和先生,如果我想添加一個按鈕到這個view.how你建議我做那個。我是一個完整的初學者在android。 – user2586942