我目前正在使用以下适配器从SQLite
数据库中读取:
private static int[] TO = {R.id.name, R.id.description, R.id.address, };
private void showPlaces(Cursor cursor) {
SimpleCursorAdapter adapter = new SimpleCursorAdapter(this, R.layout.item, cursor, FROM, TO);
setListAdapter(adapter);
}
然后我还有从适配器引用的以下布局文件:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="70dip"
android:background="@drawable/white"
android:orientation="horizontal"
android:padding="10sp">
<ImageView
android:id="@+id/Logo"
android:layout_width="50dip"
android:layout_height="50dip"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"
android:layout_marginRight="6dip"
android:src="@drawable/picture1" />
<TextView
android:id="@+id/name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#FF000000"
android:textStyle="bold"
android:textSize="12sp"
android:typeface="sans"
android:layout_toRightOf="@id/Logo" />
<TextView
android:id="@+id/description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="12sp"
android:layout_below="@id/name"
android:textColor="#0000CC"
android:layout_toRightOf="@id/Logo" />
<TextView
android:id="@+id/address"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textSize="12sp"
android:layout_below="@id/description"
android:textColor="#990000"
android:layout_toRightOf="@id/Logo" />
</RelativeLayout>
目前此代码正在显示名为 picture1 的static
图片。在我的database
中,有一个名为Unique ID
的字段,该字段从 1-60 开始运行。
我想要做的是以某种方式显示图像以匹配唯一ID
- 例如,如果唯一ID
是2,我想显示图像 picture2 。
任何人都可以建议我这样做吗?
提前致谢。
答案 0 :(得分:1)
您必须覆盖CursorAdapter。
@Override
public View newView(Context context, Cursor cursor, ViewGroup parent) {
return LayoutInflater.from(context).inflate(R.layout.item, parent, false);
}
@Override
public void bindView(View view, Context context, Cursor cursor) {
((TextView) view.findViewById(R.id.name)).setText(cursor.getString(cursor.getColumnIndex("name"));
... and so on for other TextView's
switch (cursor.getInt(cursor.getColumnIndex("unique_id")) {
case 0:
((ImageView) view.findViewById(R.id.Logo)).setImageResource(R.drawable.image0);
break;
case 1:
((ImageView) view.findViewById(R.id.Logo)).setImageResource(R.drawable.image1);
break;
... and so on for other images
}
}