2009年5月27日水曜日

Android - テーマを使う -

Android には、名前で参照できる複数のテーマがあらかじめパッケージング
されている

http://developer.android.com/reference/android/R.style.html

android:theme="@android:style/Theme.Dialog"

AndroidManifest.xml
に追加

Sudoku/AndroidManifest.xml



xmlns:android="http://schemas.android.com/apk/res/android"
package="org.example.sudoku"
android:versionCode="1"
android:versionName="1.0">
android:icon="@drawable/icon"
android:label="@string/app_name">
android:name=".Sudoku"
android:label="@string/app_name">





android:name=".About"
android:label="@string/about_title"
android:theme="@android:style/Theme.Dialog">








サブクラス化して、デフォルト値をオーバーライドすることもできる。
また、
カスタムテーマは res/values/styles.xml で定義できる

0 件のコメント:

コメントを投稿