Android 底部导航视图占用太多高度

问题描述 投票:0回答:1

我没有使用任何样式/主题或任何复杂的自定义,但底部导航视图正在采取意外的高度,

我使用 wrap_content 作为高度,因此得到以下输出:

bottom navigation screenshot

 <com.google.android.material.bottomnavigation.BottomNavigationView
    android:id="@+id/bottom_nav"
    android:layout_width="match_parent"
    **android:layout_height="wrap_content"**
    app:labelVisibilityMode="selected"
    app:menu="@menu/bottom_nav_menu" />

当使用固定高度时,即?attr/actionbarsize我得到以下输出(所有图标/标签折叠): output

代码:

<com.google.android.material.bottomnavigation.BottomNavigationView
    android:id="@+id/bottom_nav"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    app:labelVisibilityMode="selected"
    app:menu="@menu/bottom_nav_menu" />

布局完整代码:

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".AppInstalledCheckActivity"
    android:background="#FFEB3B">

    <EditText
        android:id="@+id/edittextPackageName"
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:hint="Enter Package Name" />

    <Button
        android:id="@+id/buttonCheckInstalled"
        android:layout_width="match_parent"
        android:layout_height="45dp"
        android:text="Enter Package Name" />

    <androidx.fragment.app.FragmentContainerView
        android:id="@+id/nav_host_fragment"
        android:name="androidx.navigation.fragment.NavHostFragment"
        android:layout_width="match_parent"
        android:layout_height="400dp"
        app:navGraph="@navigation/navgraph" />

     <com.google.android.material.bottomnavigation.BottomNavigationView
    android:id="@+id/bottom_nav"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:labelVisibilityMode="selected"
    app:menu="@menu/bottom_nav_menu" />


</LinearLayout>

我希望它与工具/操作栏具有相同或相似的高度。

android xml kotlin material-design bottomnavigationview
1个回答
0
投票

你需要改变

<androidx.fragment.app.FragmentContainerView
        android:id="@+id/nav_host_fragment"
        android:name="androidx.navigation.fragment.NavHostFragment"
        android:layout_width="match_parent"
        **android:layout_height="400dp"**
        app:navGraph="@navigation/navgraph" />

**android:layout_height="match_parent"**
© www.soinside.com 2019 - 2024. All rights reserved.