Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
AsyTask のプログレス ダイアログ ポップアップに余分な時間 (少なくとも 2 秒または 3 秒) を与えるにはどうすればよいですか?
処理が完了し、ダイアログを閉じる準備ができたら、次のように 3 秒後にダイアログを閉じることができます。
new Handler().postDelayed(new Runnable() { @Override public void run() { mProgressDialog.dismiss(); } }, 3 * 1000);
これによりProgressDialog、3 秒後に が閉じられます。
ProgressDialog
幸運を :)