如何通过SimpleCursorAdapter设置背景颜色

时间:2015-06-12 01:15:52

标签: android listview simplecursoradapter

这是我的代码:

private void fillData() {
        Cursor notesCursor = mDbHelper.fetchAllNotes();
        startManagingCursor(notesCursor);

        String[] from = new String[]{NotesDbAdapter.KEY_TITLE, NotesDbAdapter.KEY_COLOR};

        int[] to = new int[]{R.id.text1, R.id.text2};

        SimpleCursorAdapter notes = new SimpleCursorAdapter(
              this, R.layout.note_row, notesCursor, from, to);
        setListAdapter(notes);
        }

生成以下ListView:http://i.stack.imgur.com/7W1xa.jpg

我想要的是将“R.id.text2”值(这是一个十六进制颜色)并将其设置为我自己的文本颜色,用于ListView的每个不同行。

结果应如下所示:http://i.stack.imgur.com/wrXt8.jpg

这可能吗?感谢。

2 个答案:

答案 0 :(得分:0)

是的,这是可能的。创建自己的游标适配器MyCursorAdapter,扩展SimpleCursorAdapter,然后覆盖newViewbindView方法。

public class MyCursorAdapter extends SimpleCursorAdapter {
public MyCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to) {
    super(context, layout, c, from, to);
}

public MyCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to, int flags) {
    super(context, layout, c, from, to, flags);
}

@Override
public void bindView(View view, Context context, Cursor cursor) {
    super.bindView(view, context, cursor);
    TextView textView = (TextView) view.findViewById(R.id.text2);
    String color = cursor.getString(cursor.getColumnIndex(NotesDbAdapter.KEY_COLOR));
    textView.setBackgroundColor(Color.parseColor(color));
}

}

答案 1 :(得分:0)

无需创建新类。请参阅此代码。

@Override
public boolean setViewValue(View view, Cursor c, int columnIndex) {
    if(columnIndex == c.getColumnIndexOrThrow(NotesDbAdapter.KEY_COLOR)) {
        TextView tv = (TextView)view;
        tv.setColor(Color.RED);
    }
}