我目前面临 ListView 项目上的背景可绘制对象的问题。我有一个 ListView XML、一个 Item XML 和一个 Drawable XML,用于表示一个项目可以具有的不同状态。
问题是,当我单击或按下其中一项时,视觉上没有任何变化,但是单击有效,因为调用了我覆盖的 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>
布局/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>
可绘制/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>