这是我的解决方案,偶然发现的。
- 像往常
BottomNavigationView
一样在ConstraintLayout
. 我尝试在 中使用 3 个导航项menu/nav_menu.xml
,并使用一个空的中间项
CoordinatorLayout
在下插入 a并将andConstraintLayout
包裹在里面,这样您就可以在.BottomAppBar
FloatingActionButton
app:layout_anchor
FAB
- 取决于您希望
FAB
将 垂直放置的位置,您可以设置android:layout_height="0dp"
,这使得整个按钮几乎嵌入到底部栏中,如下所示,或者设置android:layout_height="wrap_content"
,它应该与 的高度匹配,但会在和BottomNavigationView
周围创建曲线FAB
您可以继续app:fabCradleVerticalOffset
进一步解除FAB
。在后一种情况下,设置app:backgroundTint="#00FFFFFF"
为BottomNavigationView
具有透明背景。
活动主.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">
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottom_nav_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:menu="@menu/nav_menu" >
</com.google.android.material.bottomnavigation.BottomNavigationView>
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:elevation="12dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent">
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_anchor="@id/bottom_app_bar" />
<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bottom_app_bar"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_gravity="bottom"
app:backgroundTint="#00FFFFFF" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
菜单/nav_menu.xml:
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/action_home"
android:icon="@drawable/ic_baseline_home_36"
android:title="Home"
app:showAsAction="always" />
<item
android:id="@+id/Placeholder"
android:checkable="false"
android:enabled="false"
android:title="" />
<item
android:id="@+id/action_in_tray"
android:icon="@drawable/ic_baseline_assignment_36"
android:title="In-tray"
app:showAsAction="always"/>
</menu>