我有一个ExpandableListViewButton。当我打开列表中的某些项目时,由于列表已扩展,我无法访问该按钮。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        >
        <ExpandableListView
                android:layout_height="wrap_content"
                android:layout_width="match_parent"
                android:id="@+id/expEnt"
                />
    <Button
            android:layout_height="wrap_content"
            android:layout_width="100dp"
            android:text="Plot"
            android:layout_below="@id/expEnt"
            android:layout_alignParentRight="true"/>
</RelativeLayout>





有什么办法可以解决?

最佳答案

尝试这个。这可能会帮助您:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        >
        <ExpandableListView
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:id="@+id/expEnt"
                />
    <Button
            android:layout_height="wrap_content"
            android:layout_width="100dp"
            android:text="Plot"
           android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"/>
</RelativeLayout>

10-08 02:59