我有一个BottomAppBar
,带有来自新材料设计的FAB。
BottomAppBar
有一个特定的菜单,其中包含2个项目以及一个导航图标。
问题是,我将底部的应用程序栏颜色设置为白色,图标也设置为白色。我该如何更改?
这是我的activity_layout
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bottomAppBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
app:hideOnScroll="true"
style="@style/BottomAppBarTheme"
app:menu="@menu/bottom_app_bar"
app:navigationIcon="@drawable/ic_menu_black_24"
app:fabCradleMargin="10dp" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/ic_add_white_24"
app:layout_anchor="@id/bottomAppBar"
app:shapeAppearance="@style/FabDiamondOverlay"
/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
这是我的styles.xml
<style name="AppTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/primaryColor</item>
<item name="colorPrimaryDark">@color/primaryDarkColor</item>
<item name="colorAccent">@color/secondaryColor</item>
<item name="android:actionMenuTextColor">@android:color/black</item>
</style>
<style name="FabDiamondOverlay" parent="">
<item name="cornerFamily">cut</item>
<item name="cornerSize">8dp</item>
</style>
<style name="BottomAppBarTheme" parent="Widget.MaterialComponents.BottomAppBar.Colored">
<item name="android:itemBackground">@android:color/black</item>
</style>
答案 0 :(得分:2)
您可以使用:
<com.google.android.material.bottomappbar.BottomAppBar
android:theme="@style/BottomAppBarOverlay"
.../>
具有:
<style name="BottomAppBarOverlay">
<item name="colorControlNormal">@color/...</item>
</style>
您还可以使用:
<com.google.android.material.bottomappbar.BottomAppBar
style="@style/MyBottomAppBar"
..>
具有:
<style name="MyBottomAppBar" parent="Widget.MaterialComponents.BottomAppBar">
<item name="materialThemeOverlay">@style/ThemeOverlay.BottomAppBar</item>
</style>
<style name="ThemeOverlay.BottomAppBar" parent="ThemeOverlay.MaterialComponents.BottomAppBar.Primary">
<item name="colorOnPrimary">@color/.....</item>
</style>