我正在创建一个Android应用程序,我正在管理一些剩余的东西。我希望当某个事件发生时,对话框显示出来,这对我来说不是问题。但我希望如果用户在两分钟内没有做出任何响应,对话框会自动关闭。我该如何实现呢?
static AlertDialog alert = ....;
alert.show();
Runnable dismissRunner = new Runnable() {
public void run() {
if( alert != null )
alert.dismiss();
};
new Handler().postDelayed( dismissRunner, 120000 );
不要忘记在常规对话框中解雇代码中的alert = null
(即按钮onClick)。
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage(R.string.game_message);
game_message = builder.create();
game_message.show();
final Timer t = new Timer();
t.schedule(new TimerTask() {
public void run() {
game_message.dismiss(); // when the task active then close the dialog
t.cancel(); // also just top the timer thread, otherwise, you may receive a crash report
}
}, 5000);
你应该能够使用Timer做到这一点:
http://developer.android.com/reference/java/util/Timer.html
stackoverflow链接描述了如何使用它来运行定期任务,但您也可以使用它来运行一次性任务。
final Timer t = new Timer();
t.schedule(new TimerTask() {
public void run() {
alert.dismiss();
t.cancel();
}
}, 2000);