使线性布局可以像列表视图中的列表项一样选择(Android)

时间:2011-04-28 15:25:20

标签: android listview user-interface android-linearlayout

我知道如何将一个onClick侦听器添加到LinearLayout以使整个布局成为单击目标,但我希望在列表视图中像列表项一样点击时强调LinearLayout。最好的方法是什么?

3 个答案:

答案 0 :(得分:26)

我更喜欢更简单的方式:

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

你不能以这种方式改变状态压下的背景,但有时你并不需要。

答案 1 :(得分:14)

我碰到了这个,这就是我想出来的。在布局中,将背景设置为可绘制资源:

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

然后,您是否要在活动中添加点击处理程序取决于您。

答案 2 :(得分:0)

您可以设置布局中的所有元素clickable = false。然后,您应该通过将布局背景设置为某种颜色来模仿选择行为,并在单击布局时将所有其他背景透明设置为透明。您可以使用布局ID作为索引来了解所选的布局。