2

我在 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"
4

1 回答 1

1

为时已晚!但仅适用于可能遇到相同问题的人。

一旦膨胀,ViewStub它将从视图树层次结构中删除,然后它id不会退出。因此,布局中没有带有"@+id/info_stub"id 的视图,并且您ListView希望低于该视图(不退出)

您可以使用 a LinearLayout,也可以android:inflatedId="@+id/info_layout"在您的中使用ViewStub并添加android:layout_below="@+id/info_layout"到您的ListView

于 2018-03-26T21:06:52.633 回答