0

想自定义listView中item的选择效果,不知道怎么弄。

如果我应该在用户选择项目时使用不同的 png 更改选择项目背景,这将很有用。

有什么建议吗?

4

2 回答 2

1

您正在寻找的是选择器在 res 中创建一个选择器 xml,并将列表项的背景设置为选择器 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" /> <item android:drawable="@drawable/normal" /> </selector>

另请查看:http: //developer.android.com/guide/topics/resources/drawable-resource.html#StateList

于 2012-11-29T03:47:59.907 回答
1

为此使用选择器:

<ListView android:id="@+id/list" 
      android:layout_width="fill_parent"
      android:layout_height="wrap_content" 
      android:layout_gravity="center"
      android:divider="@null" 
      android:dividerHeight="0dip"
      android:listSelector="@drawable/list_selector" />

选择器:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_focused="true" 
        android:state_pressed="false"
        android:drawable="@drawable/yourdrawable" />
    <item android:state_focused="true" 
        android:state_pressed="true"
        android:drawable="@drawable/yourdrawable" />
    <item android:state_focused="false" 
        android:state_pressed="true"
        android:drawable="@drawable/yourdrawable" />
    <item android:drawable="@drawable/yourdrawable" />
</selector> 

这是一个很好的教程

于 2012-11-29T04:52:33.353 回答