書く場所
res/values/style.xml
style.xmlの書き方
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="スタイル名" [parent="@style/親スタイル名"]>
<item name="要素名">設定値</item>
</style>
</resources>
https://android.googlesource.com/platform/frameworks/base/+/refs/heads/master/core/res/res/values/styles.xml
http://developer.android.com/guide/topics/ui/themes.html
要素名 | 内容 | 設定値の例 |
---|---|---|
android:textStyle | 文字列のスタイル | italic |
android:textColor | 文字色 | #ffffff |
android:textSize | 文字サイズ | 24sp |
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textColor">#00FF00</item>
<item name="android:typeface">monospace</item>
@color/custom_theme_color
@color/custom_theme_color
style.xmlの書き方
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="my_theme" parent="@android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/my_actionbar_style</item>
</style>
<style name="my_actionbar_style" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">#000000</item>
</style>
</resources>