Android:如何创建模态进度“轮”叠加?

前端之家收集整理的这篇文章主要介绍了Android:如何创建模态进度“轮”叠加?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在我的视图中显示模态进度“轮”叠加.

ProgressDialog接近,但我不想要对话框背景或边框.

我尝试设置对话框窗口的背景drawable:

this.progressDialog = new ProgressDialog(Main.this);

this.progressDialog.getWindow().setBackgroundDrawable(new ColorDrawable(0));
this.progressDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
this.progressDialog.setCancelable(false);
this.progressDialog.setIndeterminate(true);

this.progressDialog.show();

但无济于事(即看起来仍然没有… setBackgroundDrawable代码).

解决方法

你看过这个 tutorial吗?在页面的最后,它讨论了如何创建自定义对话框,这可能会帮助您放置具有您自己背景的微调器进度对话框.
原文链接:https://www.f2er.com/android/317734.html

猜你在找的Android相关文章