0

特定のリストビュー項目のフォントの色を変更する簡単な方法はありますか? ListView で setAdapter() に渡す ArrayAdapter アイテムがあります。リスト内の特定の要素の色を変更したいだけです。

これはこれまでの私のコードです

   ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_checked);

    ListView lv = (ListView) findViewById(R.id.listView1);
    lv.setAdapter(adapter);
4

2 に答える 2

0

In your listview.xml, you need to do it at your element (in this case it's a textview):

<TextView
        android:textColor="@color/black"/>

In the folder values, you need to create a colors.xml file. Into the file you put:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="black">#000000</color>
</resources>

It's a html color

I hope I have helped you

于 2013-05-20T19:31:33.657 に答える