首页 > 解决方案 > 如何通过更改android中的主题来更改背景颜色?

问题描述

当我在android中更改主题时,我想更改背景颜色。有没有办法在 XML 中设置背景,比如

android:background="@styles/colorAccent"

因此,当我更改主题时,背景颜色会自动更改为相应主题的 colorAccent。任何替代方法也会有所帮助。

标签: androidxmlandroid-layoutandroid-theme

解决方案


样本布局

 <FrameLayout
    style="@style/colorAccentStyle"
    android:layout_width="match_parent"
    android:layout_height="wrap_content/>

样式.xml

<resources>

<style name="colorAccentStyle">
    <item name="android:background">?colorAccent</item>
</style>

更简单的解决方案

<FrameLayout
    android:background="?colorAccent"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>

推荐阅读