0

我使用我的视图而不是 ListView。如何在触摸时突出显示此视图,就像在 ListView 中突出显示触摸一样?

4

1 回答 1

2

使用选择器作为视图的背景。例如:选择器.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/button_pressed_yellow"
      android:state_pressed="true" />
<item android:drawable="@drawable/button_focused_orange"
      android:state_focused="true" />
<item android:drawable="@drawable/button_normal_green" />

一些其他的.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="fill_parent"
android:orientation="vertical" >

<yourView
    android:id="@+id/viewWithSelector"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/selector.xml" />

于 2013-01-21T15:00:59.430 回答