请考虑以下代码:
ImageView v = (ImageView)findByViewId(R.id.picture);
// do something with v
Handler handler = new Handler();
handler.postDelayed(new Runnable() {
public void run() {
startGame();
}
}, 1500);
1.5秒后执行method
startGame()
。
如果用户想要跳过此等待时间,他应该能够立即点击图片立即拨打startGame()
,而不会在1.5秒后再拨打startGame()
。
答案 0 :(得分:1)