由于没有其他答案提供自定义样式覆盖(我认为这样做是最安全的更新方式之一),因此我在此处发布了解决方案。
我发布了一个已经解决了新AndroidX
(support design 28
)主题的解决方案。
前提是您的应用程序使用MyAppTheme
在您的中调用的自定义名称AndroidManifest.xml
:
<application
android:name=".MyApplicationName"
android:allowBackup="true"
android:icon="@mipmap/icon"
android:roundIcon="@mipmap/icon_round"
android:label="@string/app_name"
android:theme="@style/MyAppTheme">
创建(如果尚未)values/style.xml
覆盖应用程序使用的主题的文件:
<style name="MyAppTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
<item name="colorPrimary">@color/myColorPrimary</item>
<item name="colorPrimaryDark">@color/myColorPrimaryDark</item>
<item name="colorAccent">@color/myColorAccent</item>
<item name="snackbarStyle">@style/MySnackBarStyle</item>
</style>
<!-- snackbar style in res/values -->
<style name="MySnackBarStyle" parent="Widget.MaterialComponents.Snackbar">
<item name="android:background">@color/mySnackbarBackgroundColor</item>
</style>
并在values/colors.xml
文件中提供颜色
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="myColorPrimary">#008577</color>
<color name="myColorPrimaryDark">#00574B</color>
<color name="myColorAccent">#D81B60</color>
<color name="mySnackbarBackgroundColor">#D81B60</color>
</resources>
2020年更新
由于上述解决方案消除了快餐盒的圆角,这是因为通过设置背景来使用传统的快餐盒设计,如果要保留材料设计,则可以。
- 如果您要定位API 21+
替换android:background
为android:backgroundTint
<!-- snackbar style in res/values-21/ -->
<style name="MySnackBarStyle" parent="Widget.MaterialComponents.Snackbar">
<item name="android:backgroundTint">@color/mySnackbarBackgroundColor</item>
</style>
如果你是,如果你决定使用传统小吃吧的API <21瞄准API <21,那么你可以设置你的abouve MySnackbarStyle
在RES /值-21 /文件夹,并保留以前的-传统-风格在你的RES /值文件夹中。
如果您的目标API <21,并且您希望在较低的API级别中也拥有快餐栏的材料样式,则可以通过以下方式在res / values /中更改快餐栏样式:
<!-- snackbar style in res/values/ -->
<style name="MySnackBarStyle" parent="Widget.MaterialComponents.Snackbar">
<item name="android:background">@drawable/my_snackbar_background</item>
</style>
并my_snackbar_background
通过以下方式从官方仓库中借用您的商品:
<!-- in res/drawable/ -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="4dp"/>
<solid android:color="@color/mySnackbarBackgroundColor"/>
</shape>
这是一个游乐场仓库。