android中如何维护进度条?

发布于 2024-12-10 10:32:16 字数 131 浏览 0 评论 0原文

想要创建每行有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寂寞花火° 2024-12-17 10:32:16

您可以使用以下逻辑来做到这一点。

1 例如创建一个数组列表。

`public ArrayList<integer> progValue = new ArrayList<integer>();`

2 现在在自定义列表适配器类构造函数中用值“0”初始化 progvalue,如下所示

for(int i = 0; i < yourLIst.size(); i++) {
progValue.add(i,0);
}

现在在进度条更改侦听器中根据进度条值更改 progValue 对象的值,例如

progValue.add(i,p_value)

4 最后在 getView 方法中设置该值。喜欢

progObject.setProgress(progValue.get(pos));

就这样。

根据我举例的要求更改代码。

you can do that by using following logic.

1 create one arraylist for example.

`public ArrayList<integer> progValue = new ArrayList<integer>();`

2 now in custom list adapter class constructor initialize progvalue with value "0" as following

for(int i = 0; i < yourLIst.size(); i++) {
progValue.add(i,0);
}

3 now in the progress bar change listener change the value of progValue object as per your progress bar value like

progValue.add(i,p_value)

4 finally set that value in your in getView method. like

progObject.setProgress(progValue.get(pos));

That's all.

change the code as per your requirement i have put just for example.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文