0

シンプルなカーソルアダプターを使用して、カスタムレイアウトのリストビューのビューからすべてのレコードを取得しています。優先度が高い場合は赤、中程度の場合は緑、低い場合は黄色など、テキストに応じて色を変更する優先度のテキストビューを表示したい.それを行う方法はあります.

リストビューの私のコード

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);

リストビューは正常に動作しますが、リストビュー項目のテキストビューの色を変更するコードを記述する方法

前もって感謝します

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 に答える