android中如何维护进度条?
想要创建每行有 2 个组件的列表视图,第一个进度条和第二个按钮显示进度条的当前值。
对于我使用自定义列表视图的问题是,当我滚动列表视图时,进度条无法保持其先前的状态。
请帮我解决这个问题。
提前致谢。
want to create listview with 2 component in every row 1st progressbar and 2nd Button that display a current value of progressbar.
for that i m using custom list view the problem is that when i scroll the listview the progressbar cant maintain it's previous state.
Please help me out to solve this problem.
Thanks In Advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用以下逻辑来做到这一点。
1 例如创建一个数组列表。
2 现在在自定义列表适配器类构造函数中用值“0”初始化 progvalue,如下所示
现在在进度条更改侦听器中根据进度条值更改 progValue 对象的值,例如
4 最后在 getView 方法中设置该值。喜欢
就这样。
根据我举例的要求更改代码。
you can do that by using following logic.
1 create one arraylist for example.
2 now in custom list adapter class constructor initialize progvalue with value "0" as following
3 now in the progress bar change listener change the value of progValue object as per your progress bar value like
4 finally set that value in your in getView method. like
That's all.
change the code as per your requirement i have put just for example.