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

xxhby3vn  于 2023-01-28  发布在  Android
关注(0)|答案(2)|浏览(371)

我使用的是材质设计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被遮挡。

我已经尝试通过在下面的片段中添加边距来解决这个问题: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和我的晶圆厂被切断,因为它没有足够的利润。

  • 如何获得Material Design 3底部导航栏的高度,以便正确显示我的FAB?*
wlwcrazw

wlwcrazw1#

对于材质3,BottomNavigationView具有不同的minHeight
您可以应用以下内容:

<fragment
        android:layout_marginBottom="@dimen/m3_bottom_nav_min_height"

参考:android/材质/底部导航/分辨率/值/尺寸. xml#L32

dgsult0t

dgsult0t2#

也许您可以尝试通过编程获得高度,并在运行时动态设置边距底部?

Resources resources = context.getResources();
int resourceId = resources.getIdentifier("navigation_bar_height", "dimen", "android");
if (resourceId > 0) {
    navBar.getLayoutParams().height = resources.getDimensionPixelSize(resourceId);
}

有关详细信息,请参阅herehere

相关问题