0

我有一个 ListView 填充了数据库中的数值.....

现在对于每条记录,我想显示一个彩色水平条(例如,如果值为 90,条形必须宽约 90% 的屏幕......等等所有其他值)

我认为没有必要使用库类型 aChartEngine 来达到目的......

你听说过吗??谢谢

这是我计算百分比的代码

value = value / total *100;                 
4

2 回答 2

1

为此,您必须使用带有适配器的自定义列表视图。这是一个简单的代码,您可以使用 http://www.thepcwizard.in/2012/09/android-creating-custom-listview-for.html

于 2013-10-31T20:37:16.990 回答
0

What you're going to have to do is create a custom adapter for your ListView. Here's a tutorial you can use: http://commonsware.com/Android/excerpt.pdf, scroll down to page 22.

Then you can use a ProgressBar for each view.

于 2013-10-31T18:06:21.820 回答