6

我随着夜间模式的变化改变背景。

我有 /values 和 /values-night 文件夹,其中包含具有不同值的“colors.xml”。`

<color name="grey1">#ebebeb</color>
<color name="grey2">#c7c7c7</color>
<color name="grey3">#999999</color>
<color name="hover1">#8bb065</color>
<color name="red1">#ba0000</color>
<color name="red2">#ff0000</color>
<color name="green1">#336600</color>
<color name="text1">#000000</color>

另一个是

<color name="grey1">#999999</color>
<color name="grey2">#333333</color>
<color name="grey3">#000000</color>
<color name="hover1">#8bb065</color>
<color name="red1">#ba0000</color>
<color name="red2">#ff0000</color>
<color name="green1">#336600</color>
<color name="text1">#ffffff</color>

这些颜色用于背景“activity_main_bg2.xml”的图层列表:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
    <item>
        <shape android:shape="rectangle" >
            <solid android:color="@color/grey1" />
        </shape>
    </item>
    <item
        android:bottom="1dp"
        android:left="1dp"
        android:right="1dp">
        <shape android:shape="rectangle" >
            <solid android:color="@color/grey2" />
        </shape>
     </item>
</layer-list>

我的活动包含片段:

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world_dark"
    android:background="@drawable/activity_main_bg2" />

当我从昼夜或背景中更改时间时,背景颜色不会改变。但是如果我使用

android:background="@color/grey1"

一切正常。

如何解决这个问题?这是安卓的bug吗?

4

1 回答 1

7

请试试这个:

  1. 在文件夹 res/values 和 res/values-night 中创建文件 style.xml。
  2. 为您的 TextView 添加两种样式,例如:

    <style name="textViewStyle">
    <item name="android:background">@drawable/activity_main_bg2</item>
    </style>
    
  3. 将您的布​​局更新为:

    <TextView
    style="@style/textViewStyle"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world_dark" />
    

此解决方案应使属性颜色取决于日/夜模式。

于 2013-10-21T20:29:26.070 回答