アプリ内のテーマを変更できるアプリを作成しようとしていますが、マルチテーマを使用する場合、スタイルとテーマをどのように定義するかがわかりません。
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>
テキストの色とフォントサイズを設定しましたか?そして、アクティビティがテーマの1つを選択できるようにします。