現在、ListView アイテムのバックグラウンド ドローアブルに関する問題に直面しています。私は ListView XML、Item XML、および 1 つのアイテムが持つことができる異なる状態用の Drawable XML を持っています。
問題は、項目の 1 つをクリックまたは押しても視覚的には何も変化しないことですが、オーバーライドした onItemClick() メソッドが呼び出され、そのコードが実行されるため、クリックは機能します... @background パラメータを設定しなかったようです!
layout/my_activity.xml (リストビューを含む):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background"
android:orientation="vertical" >
<include ... />
<include ... />
<View
... />
<ListView
android:id="@+id/listViewPacks"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:divider="@color/blue_vdark"
android:dividerHeight="2dp" >
</ListView>
</LinearLayout>
layout/listview_item_a.xml :
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/listview_item_a_d"
android:orientation="vertical"
android:padding="5dp" >
<TextView
... />
<TextView
... />
<TextView
... />
</LinearLayout>
drawable/listview_item_a_d.xml :
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_selected="true"><shape>
<gradient android:angle="270" android:endColor="#bbbbbb" android:startColor="#e9e9e3" />
</shape></item>
<item android:state_enabled="true"><shape>
<gradient android:angle="270" android:endColor="#ecca2e" android:startColor="#f9f7c9" />
</shape></item>
<item><shape>
<solid android:color="@color/gray_dark" />
</shape></item>
</selector>