我有一个ExpandableListView
和一个Button
。当我打开列表中的某些项目时,由于列表已扩展,我无法访问该按钮。
<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>
有什么办法可以解决吗?