gpt4 book ai didi

android - 如何获取 Material Design 3 的底部导航栏高度?

转载 作者:行者123 更新时间:2023-12-05 00:00:29 29 4
gpt4 key购买 nike

我已经使用 Material Design 3 设计了我的应用程序,我正在使用 bottom navigation bar .

<!-- activity_main.xml -->
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<fragment
android:id="@+id/nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:defaultNavHost="true"
app:layout_constraintBottom_toTopOf="@id/bottom_navigation"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:navGraph="@navigation/nav_graph"
tools:ignore="FragmentTagUsage" />

<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="0dp"
android:layout_marginEnd="0dp"
android:background="?android:attr/windowBackground"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:menu="@menu/bottom_navigation_menu" />
</androidx.constraintlayout.widget.ConstraintLayout>
我添加了一个 floating action button (FAB) .
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/add_a_vehicle_fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="16dp"
android:contentDescription="@string/fab_content_description"
app:srcCompat="@drawable/ic_baseline_add_24" />
但是,FAB 隐藏在导航栏后面。
Bottom navigation bar with obscured FAB
我尝试通过在以下 fragment 中添加边距来解决此问题: How to get the ActionBar height? .
<fragment
android:id="@+id/nav_host_fragment"
....
android:layout_marginBottom="?android:attr/actionBarSize"
... />
但是,该高度来自 Material Design 2 bottom navigation bar我的 FAB 被切断了,因为它没有足够的利润。
Bottom navigation bar with FAB cutoff
如何获取 Material Design 3 底部导航栏的高度,以便正确显示我的 FAB?

最佳答案

使用 Material3 BottomNavigationView有不同的minHeight .
您可以应用以下内容:

   <fragment
android:layout_marginBottom="@dimen/m3_bottom_nav_min_height"
enter image description here
引用: android/material/bottomnavigation/res/values/dimens.xml#L32

关于android - 如何获取 Material Design 3 的底部导航栏高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72062902/

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