我正在尝试实现这种底部应用栏。
然后我放入app:backgroundTint="@android:color/transparent"
底部导航,但结果如下所示。它没有正确设置为透明。
布局代码:
<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bottomAppBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:backgroundTint="@color/colorPrimary"
app:fabCradleRoundedCornerRadius="20dp">
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottomNavigationView"
android:layout_marginRight="16dp"
app:backgroundTint="@android:color/transparent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:menu="@menu/app_bar_menu" />
</com.google.android.material.bottomappbar.BottomAppBar>