在我的程序中,我希望此警報對話框在3000毫秒後顯示。我怎樣才能做到這一點?我嘗試了很多,但我不能。任何想法?Android:3000毫秒後的警報框
幫助總是感激......!
AlertDialog.Builder successfullyLogin = new Builder(Register.this);
successfullyLogin.setCancelable(false);
successfullyLogin.setMessage("Successfully Login !");
// successfullyLogin.wait(3000);// this line is nt working
successfullyLogin.setPositiveButton("Ok",new DialogInterface.OnClickListener()
{
public void onClick(DialogInterface dialog,int which)
{
}
});
你不應該停下來,等待UI線程... –
謝謝,但它不工作 – Randroid
那麼你爲什麼接受答案? – ddewaele