我在 DrawerLayout 中有一个 ViewStub,我计划根据用户的需要动态地扩展和删除这个存根。
抽屉由一个 RelativeLayout 组成,其中包含: 1. TextView 2. 提到的 ViewStub 3. ListView
当我膨胀 ViewStub 时,生成的视图不会取代 ListView。相反,它在 ListView 下方膨胀,以至于用户看不到它。我希望存根在膨胀时将列表向下推。
我该如何解决这个问题?
这是 XML 代码:
<RelativeLayout
android:id="@+id/drawer"
android:layout_width="250dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="#dedede"
android:fitsSystemWindows="true"
android:orientation="vertical"
>
<TextView
android:id="@+id/drawer_text"
android:layout_width="match_parent"
android:layout_height="100dp"
android:background="@android:color/holo_red_light"/>
<ViewStub
android:id="@+id/info_stub"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout="@layout/info_entry_stub"
android:layout_below="@+id/drawer_text"/>
<ListView
android:id="@+id/drawernavlist"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/holo_orange_dark"
android:layout_below="@+id/info_stub"
android:layout_gravity="start">
</ListView>
</RelativeLayout>
存根指向的布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/info_entry_stub">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/darker_gray"
android:text="HELLO"/>
</RelativeLayout>
解决方案:我通过在 ViewStub 中添加属性来解决它:
android:inflatedId="@id/info_stub"