gpt4 book ai didi

android - LinearLayout 中的 ListView 不可见

转载 作者:行者123 更新时间:2023-11-29 19:11:27 25 4
gpt4 key购买 nike

我在我的 NavigationView 中遇到布局问题。目标是提供带有适配器的标题和 ListView 。首先,我有这段代码:

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/lib/com.plaxxt.plaxxt1"
android:paddingLeft="0dp"
android:paddingRight="0dp"
android:paddingTop="0dp"
android:paddingBottom="0dp"
tools:context=".MainActivity"
android:id="@+id/drawerLayout"
android:fitsSystemWindows="true">

<RelativeLayout
android:layout_width = "match_parent"
android:layout_height = "match_parent">

<android.support.v7.widget.Toolbar
android:id="@+id/my_awesome_toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary" />


<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="?attr/actionBarSize">
(...)
</FrameLayout>
</RelativeLayout>

<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:layout_gravity="start"
android:fitsSystemWindows="true">

<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start">

<include layout="@layout/drawer_header" />

<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/lst_menu_items" />

</LinearLayout>

</android.support.v4.widget.NestedScrollView>

</android.support.design.widget.NavigationView>

</android.support.v4.widget.DrawerLayout>

结果如下(有标题,没有列表)

enter image description here

如果我用虚拟图像替换标题,两者都会出现:

<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:layout_gravity="start"
android:fitsSystemWindows="true">

<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start">

<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="@dimen/nav_header_vertical_spacing"
android:src="@android:drawable/sym_def_app_icon" />

<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/lst_menu_items" />

</LinearLayout>

</android.support.v4.widget.NestedScrollView>

</android.support.design.widget.NavigationView>

结果是:

enter image description here

因此我们看到列表是使用我的适配器正确生成的。

如果我删除图像并将 ListView 保留为 LinearLayout 的唯一子项,抽屉仍然是空的。

错在哪里?请帮帮我...

最佳答案

尝试向 LinearLayout 添加 Orientation

 <LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start"
android:orientation="vertical">

<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="@dimen/nav_header_vertical_spacing"
android:src="@android:drawable/sym_def_app_icon" />

<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/lst_menu_items" />

</LinearLayout>

关于android - LinearLayout 中的 ListView 不可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45161687/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com