Существует компонент BottomAppBar, который может помочь вам в этом. Вам нужно добавить эту зависимость в ваш build.gradle
файл:
implementation 'com.google.android.material:material:1.1.0'
Тогда ваш код должен выглядеть примерно так:
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include layout="@layout/your_layout_content" />
<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bottomAppBar"
style="@style/Widget.MaterialComponents.BottomAppBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
app:backgroundTint="@color/colorPrimary"
app:fabAlignmentMode="center"
app:fabCradleMargin="10dp"
app:fabCradleRoundedCornerRadius="10dp"
app:fabCradleVerticalOffset="5dp"
app:hideOnScroll="true" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:fabSize="normal"
app:layout_anchor="@id/bottomAppBar"
app:srcCompat="@drawable/ic_your_icon" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
Ваша тема приложения должна также расширить от этого родителя: Theme.MaterialComponents