在这个问题中,我想经常更改 ImageButton 的位置。第一次初始化后,ImageButton 不会改变它的位置。这是代码...
runOnUiThread(new Runnable() {
public void run()
{
for(int i=0;i<60;i++)
{
try {
Thread.sleep(500);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
img.refreshDrawableState();
Random r=new Random();
int a=r.nextInt();
int b=r.nextInt();
if(a<0)
a=a*(-1);
if(b<0)
b=b*(-1);
w=(a%(width-50))-72;
h=(b%(height-50))-30;
img.refreshDrawableState();
img.setLeft(w);
img.setTop(h);
Toast.makeText(getApplicationContext(), "width : "+w+"\theight : "+h, Toast.LENGTH_SHORT).show();
}
}
});
变量高度和宽度是屏幕的高度和宽度