ListView项目不改变背景

时间:2015-05-27 20:21:06

标签: android listview

我尝试在按下时更改列表视图项目的背景,尽管尝试了其他SO帖子中提到的内容,但该项目在点击时拒绝更改背景。

我做错了什么?

编辑:我想要实现的目标:

enter image description here

这是默认列表视图在点击项目时的反应(谈论背景更改),但由于我使用自定义列表元素布局,因此列表根本不响应点击并且非常沉闷因此,每当我点击列表元素时,我都会尝试在背景改变的情况下实现类似的行为。

我有这个简单的选择器:

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/selected_state" />
</selector>

selected_state.xml

   <?xml version="1.0" encoding="UTF-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="rectangle">
        <solid android:color="@color/darkblue" />
    </shape>

我尝试将其设置为listview的选择器并使列表视图单选

主要布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="match_parent"
                android:layout_height="100dp">
...
                <LinearLayout
                    android:id="@+id/tab1"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    android:orientation="vertical">

                    <ListView
                            android:layout_width="wrap_content"
                            android:layout_height="fill_parent"
                            android:id="@+id/listViewCentral"
                            android:choiceMode="singleChoice"
                            android:listSelector="@drawable/selector" />
                </LinearLayout>
 ...

</RelativeLayout>

列表视图项

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="match_parent"
                android:layout_height="100dp"
    android:background="@drawable/selector">

...

</RelativeLayout>

我使用OnItemClick侦听器将状态设置为选定的

主要活动:

ListView list = (ListView)findViewById(R.id.listViewCentral);
        list.setAdapter(stringAdapter);
        list.setOnItemClickListener(new TsClickListener());

监听器:

public class TsClickListener implements AdapterView.OnItemClickListener {
    @Override
    public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
        view.setSelected(true);
    }
}

Logcat为空(无错误)

2 个答案:

答案 0 :(得分:0)

尝试添加属性android:state_focused

<?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/selected_state" />            
    <item android:state_focused="true" android:drawable="@drawable/selected_state" />
</selector>

答案 1 :(得分:0)

问题毕竟是OnItemClick事件根本没有被触发,解决方法是将“clickable”属性添加到我的列表视图元素的RelativeLayout布局并将其设置为 true ,一切正常。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="100dp"
    android:clickable="true" <-- Problem
    android:background="@drawable/selector">

...

</RelativeLayout>