我已经尝试实现材料组件底部应用栏,遵循这些指南并对 AndroidX 进行重构 + 更新我的 AppTheme。 材质组件 - 底部应用栏
这是我的xml代码:
<androidx.coordinatorlayout.widget.CoordinatorLayout
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"
android:fitsSystemWindows="true">
<!-- Other components and views -->
<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bottombar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
app:elevation="2dp"
app:fabAlignmentMode="center"
app:fabCradleVerticalOffset="10dp"
app:fabCradleMargin="10dp" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top|center_horizontal"
android:adjustViewBounds="true"
app:layout_anchor="@id/bottombar"
app:layout_anchorGravity="top|center"
app:srcCompat="@drawable/marker" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
我什至增加了fabCradleMargin
和fabCradleOffset
- 否则按钮完全在底部,而不是像它应该的那样漂浮在那个半圆中......
有人对此有任何线索吗?非常感谢!