进度对话框中只有进度轮
我想在我的活动正忙于准备某些内容时显示进度对话框。
问题是我只想显示进度轮而不是对话框屏幕。
目前正在显示一个带有黑色对话框的进度对话框,进度轮在其上旋转。
以图像作为参考。(右下角)。
I want to show a progress dialog when my activity is busy preparing something.
The problem is i just want the progress wheel being shown NOT the dialog screen with it.
Currently am showing a progress dialog with the black dialog on which the progress wheel spinning.
Take the image as a reference.(bottom right corner).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将其放入 XML 布局中您想要“进度轮”的位置。
Put this in your XML layout where you want the "progress wheel".
以下代码将在活动底部添加一个不带对话框的进度条:
The following code will add a progress bar without the dialog at the bottom of the activity:
将您的布局包装在相对布局中
然后每当您想要显示和隐藏进度时,只需将可见性设置为消失/可见。我相当确定您可以为进度栏提供透明背景,因此它会给您只是轮子。
Wrap your layout in a relative layout
Then whenever you want the to show and hide the progress, just set the visibility to gone/visible.I'm fairly certain that you can have a transparent background for the progress bar, so it will give you just the wheel.