在android應用程序中,我向用戶顯示了一個沒有按鈕的AlertDialog,只是一條消息。我如何以編程方式銷燬AlertDialog,以便它不再可見?我試着用cancel()和dismiss(),但他們不工作,視圖仍然存在。如何以編程方式刪除AlertDialog
AlertDialog.Builder test = new AlertDialog.Builder(context);
test.setTitle("title");
test.setCancelable(true);
test.setMessage("message...");
test.create().show();
然後我試圖
test.show().cancel()
和
test.show().dismiss()
,但不工作。
http://stackoverflow.com/a/14445953/5188051檢查出 –