/res/drawableフォルダーであるドローアブルの名前を持つTEXTである1列の5列のデータベースがあります。
private void fillData() {
mCursor = db2.getAllAchievements();
startManagingCursor(mCursor);
String[] from = new String[]{achHelper.ROW_NAME, achHelper.ROW_DESCRIPTION, achHelper.ROW_POINTS, achHelper.ROW_TROPHY};
int[] to = new int[]{R.id.achTitle, R.id.achDescription, R.id.achPoints, R.id.trophy};
SimpleCursorAdapter classes =
new SimpleCursorAdapter(this, R.layout.ach_row, mCursor, from, to);
setListAdapter(classes);
}
R.id.trophy は ImageView ですが、achHelper.ROW_TROPHY から取得されたデータに基づいて背景画像を設定するにはどうすればよいですか?