我的 android 应用程序中有一个 ListAdapter...我正在尝试向列表中的每个项目添加一个 ratingBar,其值设置为 [TAG_RATING] 中包含的值。问题是列表正在显示,唯一的 ratingBar 卡在列表的最底部并且相当大。
请看下面的代码:
ListAdapter adapter = new SimpleAdapter(
AllProductsActivity.this, productList,
R.layout.list_item, new String[] { TAG_BID,
TAG_NAME,
TAG_RATING},
new int[] { R.id.pid, R.id.name, R.id.ratingBar});
((SimpleAdapter) adapter).setViewBinder(new MyBinder());
// updating listview
setListAdapter(adapter);
然后 ViewBinder 类看起来像这样:
class MyBinder implements ViewBinder{
public boolean setViewValue(View view, Object data, String textRepresentation) {
if(view.getId() == R.id.ratingBar){
String stringval = (String) data;
float ratingValue = Float.parseFloat(stringval);
RatingBar ratingBar = (RatingBar) view;
ratingBar.setRating(ratingValue);
return true;
}
return false;
}
}
列表项 xml 文件如下所示:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/pid"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:visibility="gone" />
<!-- Name Label -->
<TextView
android:id="@+id/name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingTop="6dip"
android:paddingLeft="6dip"
android:textSize="17dip"
android:textStyle="bold" />
<RatingBar
android:id="@+id/rating"
style="?android:attr/ratingBarStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="6dip"
android:stepSize="0.25"
android:numStars="5"
/>