5

我希望能够声明一些主题以轻松更改我的应用程序的外观和感觉。所以我知道你可以定义一个继承自 android:Theme 的样式,然后在其中定义属性。

但是有两个问题:

  1. 如果我想为应用程序中的不同视图设置多个背景颜色怎么办?这样我就可以拥有整个活动的背景和活动中文本视图的不同背景以及按钮等的另一个背景。但是这些(不同的)颜色主题取决于?
  2. 是否可以根据使用的主题定义一组可绘制对象。例如,我的意思与您如何为不同的屏幕密度定义不同的可绘制对象类似。理想情况下,我会有用于不同主题的不同配色方案的图像。这种行为可以在android中定义吗?

谢谢你的帮助,詹姆斯

4

1 回答 1

3

您可以为每种小部件类型所需的不同颜色或可绘制对象定义不同的样式,并参考各种主题中的样式。例如:

<!-- themes -->

<style name="MyTheme" parent="android:style/Theme.Light">
    <item name="android:windowNoTitle">true</item>
    <item name="android:windowBackground">@drawable/something</item>
    <item name="android:buttonStyle">@style/MyButton</item>
</style>

<style name="MyTheme.Red">
    <item name="android:buttonStyle">@style/MyButton.Red</item>
</style>

<style name="MyTheme.Blue">
    <item name="android:buttonStyle">@style/MyButton.Blue</item>
</style>

<!-- styles -->

<style name="MyButton" parent="android:style/Widget.Button">
    <item name="android:background">@drawable/btn_mydefault</item>
</style>

<style name="MyButton.Red">
    <item name="android:background">@drawable/btn_red</item>
</style>

<style name="MyButton.Blue">
    <item name="android:background">@drawable/btn_blue</item>
</style>
于 2011-09-14T08:57:27.423 回答