私はListView
を持っていて、ListView
アイテムのxmlファイルを作成しました。あなたが見ることができるようにAndroidで一度選択したTextViewの色を定義する方法は?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/list_item_selector_back"
android:minHeight="?attr/listPreferredItemHeight"
android:orientation="vertical">
<CheckedTextView
android:id="@+id/list_item_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
android:textColor="@color/list_item_selector_fore" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<TextView
android:id="@+id/list_item_author"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/list_item_selector_fore" />
<!-- and many more TextView elements -->
</LinearLayout>
</LinearLayout>
list_item_selector_fore.xml:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="@android:color/white" android:state_pressed="true" />
<item android:color="@android:color/white" android:state_activated="true" />
<item android:color="@android:color/white" android:state_focused="true" />
<item android:color="@android:color/black" />
</selector>
、私は根LinearLayout
に一度の背景を定義しました。しかし、TextView
ごとにandroid:textColor="@color/list_item_selector_fore"
を設定しなければならなかった。 フォアグラウンドで試しましたが、何も起こりませんでした。これをよりスマートにするにはどうすればよいですか?
をサブクラス化する必要があります。 – user3486470
あなたが探しているビューのタイプの画像を投稿してください。@ EV221 – Lampard
あなたは何をしたいですか? –