안드로이드 응용 프로그램에서 버튼없이 메시지 만 표시하는 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 이것을 확인하십시오 –