4

我有一个简单的问题。我想为我的 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>
4

1 回答 1

5

试试这个方法:

1)定义自己的res/values/attrs.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <declare-styleable name="AppTheme">
        <attr name="myLinearLayoutStyle" format="reference" />
    </declare-styleable>

</resources>

2)将上述属性分配给您 LinearLayout

<LinearLayout android:layout_width="fill_parent"
              android:layout_height="wrap_content"
              style="?attr/myLinearLayoutStyle"
              android:gravity="center">
</LinearLayout>

3) 为这个属性分配一个具体的样式:

<style name="AppLightTheme" parent="android:Theme.Holo.Light">
    <item name="@attr/myLinearLayoutStyle">@style/lightBackground</item>
</style>

<style name="AppTheme" parent="android:Theme.Holo">
    <item name="@attr/myLinearLayoutStyle">@style/darkBackground</item>
</style>

<style name="lightBackground">
    <item name="android:background">#D1CBF5</item>
</style>

<style name="darkBackground">
    <item name="android:background">#351BE0</item>
</style>

希望我正确理解了你的问题。

于 2012-12-28T23:17:02.377 回答