java 进度对话框。字体:https://stackoverflow.com/questions/12841803/best-way-to-show-a-loading-progress-indic

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 进度对话框。字体:https://stackoverflow.com/questions/12841803/best-way-to-show-a-loading-progress-indic相关的知识,希望对你有一定的参考价值。

ProgressDialog progress = new ProgressDialog(this);
progress.setTitle("Loading");
progress.setMessage("Wait while loading...");
progress.setCancelable(false); // disable dismiss by tapping outside of the dialog
progress.show();
// To dismiss the dialog
progress.dismiss();

// OR

ProgressDialog.show(this, "Loading", "Wait while loading...");

以上是关于java 进度对话框。字体:https://stackoverflow.com/questions/12841803/best-way-to-show-a-loading-progress-indic的主要内容,如果未能解决你的问题,请参考以下文章