我知道如何添加一个onClick监听器到LinearLayout,使整个布局成为一个点击目标,但我想让LinearLayout在点击时突出显示,就像列表视图中的列表项一样。最好的方法是什么?
我更喜欢更简单的方法:
<LinearLayout android:orientation="vertical"
android:id="@+id/layoutIdentifier"
android:clickable="true"
android:background="?android:attr/selectableItemBackground"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- put views here -->
</LinearLayout>
你不能通过这种方式改变状态按下的背景,但有时你真的不需要。
我遇到了这个,这就是我想到的。在布局中,将背景设置为可绘制的资源:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/clickable_layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/clickable">
...
</LinearLayout>
然后在drawable中添加clickable.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="@android:drawable/list_selector_background" />
</selector>
然后由你决定是否要在activity中添加一个click handler
你可以设置布局中的所有元素clickable=false。然后,你应该通过设置布局背景为某种颜色来模仿选择行为,并在单击布局时将所有其他背景设置为透明。您可以使用布局id作为索引来了解选择了哪个布局。