Android - ListView项目不改变其状态

时间:2012-07-04 21:47:35

标签: android listview background selector drawable

我目前在ListView项目上遇到了背景绘制问题。 我有一个ListView XML,一个Item XML和一个Drawable XML,用于一个项目可以拥有的不同状态。

问题是,当我点击或按下其中一个项目时,视觉上没有任何变化,但点击有效,因为我覆盖的onItemClick()方法被调用并且其代码被执行...就像我没有设置@背景参数!

layout / my_activity.xml(包含listview):

<?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>

2 个答案:

答案 0 :(得分:2)

首先,touchmode中没有持久选择或聚焦状态。

您可以使用state_activated解决此问题。

您可以通过将列表的选择模式设置为单个或多个来实现此目的(默认值为none)。

getListView().setChoiceMode(ListView.CHOICE_MODE_SINGLE); 

然后在选择器XML中使用激活状态:

<item android:state_activated="true">
    <shape>   
        <gradient android:angle="270" android:endColor="#bbbbbb" droid:startColor="#e9e9e3" />   
    </shape>
</item> 

请注意,state_activated适用于API 11 + ...对于以前的版本我相信您必须使用自定义适配器中的数组来跟踪所选状态并使用它来设置背景颜色适用于getView方法的/ drawable。

答案 1 :(得分:0)

我有一个带有ListView的适配器,问题是我在getView方法中改变了我的视图背景,所以我认为选择器是在后面绘制的,或者根本不绘制。无论如何,我只是删除了那些代码行,现在它工作正常,谢谢!