Android进度条嵌入在ui中而不是对话框中
有没有一种方法可以在不使用对话框的情况下将进度条嵌入到 UI 中。 不是以编程方式,而是使用布局 xml 文件。 我猜它必须是某种动画或“可绘制”
Is there a way to embed the progress bar in the UI with out an dialog.
And not programmatically but with layout xml files.
I am guessing it has to be some sort of animation or a "drawable"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
ProgressBar
小部件:如果需要,您可以使用自己的图像对其进行自定义。您只需创建一个如下所示的样式文件 (res/styles.xml):
@drawable/progress_small
引用名为progress_small.png
的图像文件。然后,只需这样修改你的进度条:You can use the
ProgressBar
widget:You can customize it with your own image if you want. You just have to create a styles file (res/styles.xml) like this:
@drawable/progress_small
makes reference to an image file calledprogress_small.png
. Then, just modify your progress bar this way:是的,您可以在 xml 中使用小部件“ProgressBar”:
http://developer.android.com/reference/android/widget/ProgressBar。 html
Yes you can use the Widget "ProgressBar" in your xml:
http://developer.android.com/reference/android/widget/ProgressBar.html