0

我使用简单的光标适配器从具有自定义布局的列表视图中的视图中获取所有记录。我想显示优先级文本视图以根据文本更改颜色,例如,如果优先级高,则为红色,如果优先级高,则为绿色,如果优先级低,则为黄色。有什么方法可以做到。我对 android 很陌生

我的列表视图代码

myList=(ListView) findViewById(R.id.listView1);
    myAdapter.open();

    Cursor cursor = myAdapter.fetchAllView();

    startManagingCursor(cursor);
String []from=new String[]{ DbAdapter.KEY_DESCRIPTION,DbAdapter.KEY_TITLE,DbAdapter.KEY_TASK_PRIORITY,DbAdapter.KEY_CATEGORY_NAME,DbAdapter.KEY_TIME,DbAdapter.KEY_DATE };
int[] to=new int[] { R.id.txtdescription,R.id.txtitem,R.id.txtPriority,R.id.txtcategory,R.id.txttimeOne,R.id.txtDateOne}; 
 myCursorAdapter = new SimpleCursorAdapter(ListItems.this, R.layout.items, cursor,from, to);
myList.setAdapter(myCursorAdapter);

listview 工作正常,但如何编写代码来更改 listview 项中的 textview 颜色

提前致谢

4

2 回答 2

0

我会考虑使用BaseAdapter。这将使您对每一行有更多的控制。

于 2013-02-16T12:47:26.640 回答
0

您需要使用自定义光标适配器,因为您可以动态更改内容

这里我举个例子,在 bindView 方法中改变文本的颜色

public class MessageAdapter extends CursorAdapter {
private Cursor mCursor;
private Context mContext;
private final LayoutInflater mInflater;


public MessageAdapter(Context context, Cursor c) {
    super(context, c);
    mInflater=LayoutInflater.from(context);
mContext=context;
}

@Override
public void bindView(View view, Context context, Cursor cursor) {

    TextView mobileNo=(TextView)view.findViewById(R.id.mobileNolistitem);
    mobileNo.setText(cursor.getString(cursor.getColumnIndex(TextMeDBAdapter.KEY_MOBILENO)));

    TextView frequency=(TextView)view.findViewById(R.id.frequencylistitem);
    frequency.setText(cursor.getString(cursor.getColumnIndex(TextMeDBAdapter.KEY_FREQUENCY)));

    TextView rowid=(TextView)view.findViewById(R.id.rowidlistitem);
    rowid.setText(cursor.getString(cursor.getColumnIndex(TextMeDBAdapter.KEY_ID)));

}

@Override
public View newView(Context context, Cursor cursor, ViewGroup parent) {
    final View view=mInflater.inflate(R.layout.message_list_item,parent,false); 
    return view;
}

}

于 2013-02-16T12:54:30.837 回答