6

我面临一个问题,我尝试了几种方法来面对它,仍然不成功。

我的应用程序正在使用多个主题,例如:万圣节、圣诞节等,并且我在小部件上使用了一些颜色属性,例如 TabLayout 背景、文本颜色等,以对应用程序进行上下文化。

问题是:如何根据主题上下文使用具有不同值的相同颜色属性?

所以,基本上这是声明颜色的正常方法:

<color name="mapMarkerSelectedTextColor">@android:color/white</color>
<color name="mapLoadingIndicatorColor">@color/white</color>

但是,主题和颜色是不可变的,所以我想,也许我可以在每个主题中覆盖这些颜色,例如:

    <item name="mapMarkerUnselectedTextColor">@color/christmas_red</item>
    <item name="mapMarkerSelectedTextColor">@color/white</item>

=> 不成功

其他线索,将这些颜色声明为属性:

<attr name="mapLoadingIndicatorColor" format="reference|color" />
<attr name="map_autocomplete_accent_color" format="reference|color" />

并像这样在我的 XML 中使用主题:“ ?attr/mapLoadingIndicatorColor”。但此功能仅在Lollipop版本之后才允许使用,并导致之前的崩溃。

我已经阅读了很多关于主题定制、颜色覆盖的内容,但从未找到关于这种情况的明确解决方案。

不管怎么说,还是要谢谢你。

4

1 回答 1

1

你提到过:

并像这样在我的 XML 中使用主题:“?attr/mapLoadingIndicatorColor”。但此功能仅在 Lollipop 版本之后才允许使用,并导致之前的崩溃。

我不确定它?attr/something不能在 Lollipop 之前使用(Lollipop 的 API 级别为 21),因为我在模拟器中 API 级别为 16 的设备上使用了它,它工作正常。I used it like below to change the background color of a button when different theme is chosen:

在activity_main.xml(在布局文件夹中):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="A button"
        style="?attr/myButton"/>

</LinearLayout>

在 attrs.xml(在 values 文件夹中):

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <attr name="myButton" format="reference"></attr>
</resources>

在 styles.xml 中(在 values 文件夹中):

<resources>

<!-- default theme -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="myButton">@style/defaultButtonStyle</item>
</style>

<style name="defaultButtonStyle" parent="android:Widget.Button">
    <item name="android:background">@color/green</item>
</style>

<!-- custom theme -->
<style name="AppTheme.CustomTheme">
    <item name="myButton">@style/customButtonStyle</item>
</style>

<style name="customButtonStyle" parent="android:Widget.Button">
    <item name="android:background">@color/blue</item>
</style>

</resources>

实际上,我对 Android 编程还是很陌生,如果你能指定你在哪里找到?attr/mapLoadingIndicatorColor会导致棒棒糖之前崩溃的语句,那就太好了!(我在任何地方都找不到,我只知道你不能使用提升属性pre-Lollipop)

于 2016-01-19T06:35:32.903 回答