Android:LinearYout中ExpandableListview中的重叠

Android:LinearYout中ExpandableListview中的重叠,android,layout,expandablelistview,Android,Layout,Expandablelistview,在我的android应用程序中,我有一个可扩展的列表视图和一个线性布局中的按钮,但当我打开一个子列表时,项目之间有某种重叠,只有listview在布局中,按钮隐藏在listview下。我有两个项目超过对方。其中一个藏在另一个下面。 我怎样才能修好它 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

在我的android应用程序中,我有一个可扩展的列表视图和一个线性布局中的按钮,但当我打开一个子列表时,项目之间有某种重叠,只有listview在布局中,按钮隐藏在listview下。我有两个项目超过对方。其中一个藏在另一个下面。 我怎样才能修好它

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="match_parent"
              android:layout_height="match_parent">

        <ExpandableListView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/expandableListView"/>
        <Button
                android:id="@+id/backup"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="BackUp"
                android:clickable="true"/>
</LinearLayout>

对不起,我不明白你在问什么。你能不能拍一张截图,把它贴到某个地方,并提供一个链接,这样我们就可以看到你的意思了。