我在Android中有一个应用程序,在某些活动中,它使用项目列表显示来自数据库列的内容。
这就是我这样做的方式:
lv = (ListView) findViewById(R.id.list);
Cursor cursor = db.getAllData();
startManagingCursor(cursor);
adapter = new SimpleCursorAdapter(this, R.layout.listitem, cursor,
new String[] { db.KEY_USER }, new int[] { R.id.txt1 });
lv.setAdapter(adapter);
我正在使用适配器连接文本视图和表格的内容。
以下是我的Xml的样子“
<?xml version="1.0" encoding="utf-8"?>
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/txt1"
android:textSize="20dip"
android:padding="8dip" />
我的问题是:
如何为每个与数据库连接的列表项设置图标和颜色?