我有一个简单的问题。我想为我的 UI 提供多个主题,用户可以在它们之间切换
问题是我可以使用设置原始 UI 类样式的主题,或者我可以直接在 XML 布局元素上使用样式,但是我无法定义一种样式,该样式随后会根据我应用的主题进行更改。并非我想做的所有样式都基于原始类型。
我想说我想做的类似于使用 CSS 选择器来设置类或 ID 的样式,但主题只允许您设置元素名称的样式。
我现在能做的最好的事情是有一个从我构建的实际样式中继承的基本样式,如下所示:
我的 res/values/style.xml
// All styles have to be subclassed here to be made generic, and only one
// can be displayed at a time. Essentially, I'm doing the same thing as setting
// a theme does, but for styles. If I have 50 styles, I have to have 50 of
// these for each theme, and that's not DRY at all!
<style name="MyHeaderStyle" parent="MyHeaderStyle.Default"/>
<!--
<style name="MyHeaderStyle" parent="MyHeaderStyle.Textures"/>
-->
<style name="MyHeaderStyle.Default">
<item name="android:background">@android:color/background_dark</item>
</style>
<style name="MyHeaderStyle.Textures">
<item name="android:background">@drawable/header_texture</item>
</style>
我的 layout.xml 中的用法:
<!-- Note that I can't use a theme here, because I only want to style a
SPECIFIC element -->
<LinearLayout android:layout_width="fill_parent"
android:layout_height="wrap_content"
style="@style/MyHeaderStyle"
android:gravity="center">
</LinearLayout>