【发布时间】:2020-11-20 04:52:48
【问题描述】:
我想为我的 MaterialToolbar 设置主题,以便将其所有图标的颜色解析为值 ?attr/colorOnPrimary (#FFF)。我不希望必须直接在 XML 布局文件中设置 android:theme。相反,我希望能够覆盖toolbarStyle 属性来控制主题(按照Material Design page 中的建议)。
这些是我的应用使用的主题的相关属性。
<style name="Base.Theme.GithubUser" parent="Theme.MaterialComponents.DayNight.NoActionBar">
...
<item name="colorOnPrimary">@color/white</item>
<item name="toolbarStyle">@style/Widget.GithubUser.Toolbar</item> <!-- I want to control all the styles (themes) of my MaterialToolbar through this attribute -->
</style>
我使用的样式(@style/Widget.GithubUser.Toolbar)如下。
<style name="Widget.GithubUser.Toolbar" parent="Widget.MaterialComponents.Toolbar.Primary">
...
<item name="materialThemeOverlay">@style/ThemeOverlay.GithubUser.Toolbar</item>
</style>
<style name="ThemeOverlay.GithubUser.Toolbar" parent="">
<item name="colorControlNormal">?attr/colorOnPrimary</item>
<item name="colorControlHighlight">@color/material_toolbar_icon_highlight_color</item>
</style>
我现在拥有的是:我的溢出图标确实带有?attr/colorOnPrimary,但我的其他图标不受影响。我尝试将colorControlNormal 更改为其他颜色值,并且溢出图标确实会根据提供给属性的值发生变化,但我的其他图标根本不受影响。这是显示器。
作为参考,这是我的menu.xml 文件,用于扩展工具栏菜单。
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/action_navigate_to_favourite_fragment"
android:title="@string/show_favorites_text"
android:icon="@drawable/drawable_favorite"
app:showAsAction="ifRoom" />
<item
android:id="@+id/action_change_settings"
android:title="@string/change_language_text"
app:showAsAction="never"/>
</menu>
错误显示的图标是@drawable/drawable_favorite,它是一个SVG文件。其内容如下。
<vector android:height="24dp" android:viewportHeight="412.735"
android:viewportWidth="412.735" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:pathData="M295.706,35.522C295.706,35.522 295.706,35.522 295.706,35.522c-34.43,-0.184 -67.161,14.937 -89.339,41.273c-22.039,-26.516 -54.861,-41.68 -89.339,-41.273C52.395,35.522 0,87.917 0,152.55C0,263.31 193.306,371.456 201.143,375.636c3.162,2.113 7.286,2.113 10.449,0c7.837,-4.18 201.143,-110.759 201.143,-223.086C412.735,87.917 360.339,35.522 295.706,35.522z"/>
</vector>
我的尝试和工作:将 SVG 的 path android:fillColor 更改为 ?attr/colorControlNormal。理想情况下,我不想篡改 SVG fillColor 属性,而只能通过 colorControlNormal 为可绘制对象设置色调。我在哪里弄错了主题,我该如何解决?
【问题讨论】:
标签: android android-toolbar android-theme android-styles material-components-android