我尝试创建一个允许用来更改应用中主题的应用, 但如果我有多主题,我无法找出如何定义风格和主题。
在CSS中,我将以此为例,
File: Theme1.css
div.button {
font-color: red;
}
File: Theme2.css
div.button {
font-color: blue;
}
然后通过包含其中一个选择我将使用的主题。
我看了http://developer.android.com/guide/topics/ui/themes.html,但这就是我能做到的 找出不显示如何定义如果使用有多主题。
有人可以给我一个小例子说
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:padding="0dip" >
<TextView
android:id="@+id/my_text"
android:layout_width="wrap_content"
android:layout_marginLeft="3dip"
android:layout_marginRight="3dip"
android:layout_height="20sp"
/>
</LinearLayout>
设置文本的颜色和字体大小? 并允许活动选择其中一个主题。