Android:主题和风格

时间:2012-10-26 10:52:19

标签: android android-xml android-theme

我尝试创建一个允许用来更改应用中主题的应用, 但如果我有多主题,我无法找出如何定义风格和主题。

在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>

设置文本的颜色和字体大小? 并允许活动选择其中一个主题。

0 个答案:

没有答案