android - 列表中的静态进度条
我想实现一个静态进度条来显示我想要的数据。这个问题中的代码看起来不错 - Android:静态水平进度条可以嵌入到 Textview 中吗?
我将在代码中使用 bar.setProgress(),而不是在 xml 文件中设置 android:progress。
我想在列表中显示这个水平条作为监听的一部分。 怎么办呢?
I want to implement a static progress bar which displays the data I want. The code in this question looks fine - Android: Can a static horizontal progress bar be embedded in a Textview?
Instead of setting android:progress in the xml file, I'll use bar.setProgress() in the code.
I want to display this horizontal bar in a list as a part of the listentry.
How can it be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个 CustomListAdapter,请参阅下面的示例
http://united-coders.com/phillip-steffensen/android-dealing-with-listactivities-customized-listadapters-and-custom-Design-0
内部getView() 函数返回从包含进度条的 xml 生成的视图,您就完成了。
Create a CustomListAdapter, see an example below
http://united-coders.com/phillip-steffensen/android-dealing-with-listactivities-customized-listadapters-and-custom-designed-0
Inside the getView() function return the view generated from an xml which contains progress bar and you are done.