私はこのような2つの形状を持っています:
List_selector_focused.xml
<gradient
android:startColor="#f5c98c"
android:endColor="#f7ddb8"
android:angle="90" />
</shape>
およびlist_selector_pressed.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#fb9d23"
android:endColor="#ffc579"
android:angle="90" />
</shape>
そして私のlist_selector.xml
<?xml version="1.0" encoding="utf-8"?>
<selector
xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_pressed="true"
android:drawable="@drawable/list_selector_pressed" />
<item
android:state_focused="true"
android:drawable="@drawable/list_selector_focused" />
<item
android:drawable="@android:color/transparent" />
</selector>
そして、リストビューに追加しますlist_selector.xml
<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#000000"
android:cacheColorHint="#0A3A5C"
android:scrollbars="none"
android:listSelector="@drawable/list_selector">
しかし、リストビューの項目の 1 つを押しても色が表示されません。何か提案はありますか?
編集
これを適用しようとしているリストは、カスタム リストです。リスト内の各項目のレイアウト:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:paddingBottom="10dip"
android:paddingLeft="10dip"
android:paddingTop="10dip" >
<TextView
android:id="@+id/idNumber"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="First"
android:textColor="#11629F"
android:textSize="17sp"
android:textStyle="bold" />
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</LinearLayout>
<TextView
android:id="@+id/date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/idNumber"
android:layout_below="@+id/idNumber"
android:text="Second"
android:textSize="15sp" />
</RelativeLayout>