我在ExpandableListView中有我的组的以下布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/color_WHITE"
android:clickable="false" >
<TextView
android:id="@+id/tv_group_name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginLeft="40dp"
android:layout_weight="1"
android:ellipsize="end"
android:gravity="center_vertical"
android:maxLines="1"
android:text="TextView"
android:textColor="@color/GROUP_BLUE"
android:textSize="18sp"
android:typeface="sans"
android:clickable="false" />
<ImageView
android:id="@+id/img_add_group"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_marginTop="4dp"
android:layout_marginBottom="4dp"
android:layout_marginLeft="2dp"
android:layout_marginRight="2dp"
android:layout_gravity="center_vertical"
android:layout_weight="0"
android:clickable="true"
android:src="@drawable/btn_new_item_selector"
tools:ignore="ContentDescription" />
</LinearLayout>
<View
android:id="@+id/view_group_divider"
android:layout_width="match_parent"
android:layout_height="4dp"
android:background="@drawable/transparent" />
ImageView img_add_group有一个选择器作为src,状态为normal,focused和pressed。问题是当我点击整个组行时它会改变状态,而不是图像本身(最终应该像按钮一样)。我尝试将其更改为Button并从LinearLayout和TextView中删除android:clickable="false"
,但随后我的整个组行停止运行并且没有展开,但按钮运行正常。
我该如何解决?