如何显示没有消息的进度对话框(我只需要不确定的圆圈)?
如何在没有消息的情况下显示进度对话框?
我只需要显示不确定的圆圈。在不创建自定义对话框的情况下,最简单、最快的方法是什么?有没有类似的方法:
progressDialog.setShowIndependentCircleOnly(true)
How can I show a progress dialog without the message?
I only need to show the indeterminate circle. What is the easiest and fastest way of doing this without creating a custom dialog? Is there any method similar to this:
progressDialog.setShowIndeterminateCircleOnly(true)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
希望这会对一些人有所帮助,因为答案仍然不容易找到。
上面的第二行将删除进度圆圈图标周围的框;但默认情况下它会保持左对齐。您必须添加上面的第三行来处理 XML 布局文件中的重力和任何其他样式。
Progress_bar.xml
如果您喜欢默认的小圆圈图标,则不必定义上面的样式
Hope this will help some as answer is still not easily found.
2nd line above will remove the box around the progress Circle icon; but it will stay left aligned by default. You will have to add the third line above to handle gravity and any other style in a XML layout file.
progress_bar.xml
You do not have to define the style above if you like the default smaller circle Icon
如果你只需要一个没有盒子的纺车,你可以这样使用。
if you need a only spinning wheel without box, you can use like this.
仅在 xml 文件中执行进度条
或创建 ProgressDialog 而不设置标题
Do only progressbar in your xml file
or Create ProgressDialog without setting title