さて、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;
}