好吧,我想用 setBackground() 设置一个按钮,但是在这次更新之后,我想在 500 毫秒时让线程休眠,并且在同一个按钮上设置另一个背景之后,所有这些都在一个 onTouch 方法中。例子
public boolean onTouch(View v,MotionEvent event){
switch(event.getAction()){
case MotionEvent.ACTION_UP:
button.setBackground(R.drawable.bckg1);
try{
Thread.sleep(500);
button.setBackground(R.drawable.bckg2);
}catch(Exception e){}
break;
}