我没有使用任何样式/主题或任何复杂的自定义,但底部导航视图正在采取意外的高度,
我使用 wrap_content 作为高度,因此得到以下输出:
<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我得到以下输出(所有图标/标签折叠):
代码:
<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>
我希望它与工具/操作栏具有相同或相似的高度。
你需要改变
<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"**