gpt4 book ai didi

android - 如何通过更改android中的主题来更改背景颜色?

转载 作者:行者123 更新时间:2023-12-05 00:20:53 31 4
gpt4 key购买 nike

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

android:background="@styles/colorAccent"

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

最佳答案

样本布局

 <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"/>

关于android - 如何通过更改android中的主题来更改背景颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56949059/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com