2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Android Style

Last updated at Posted at 2013-02-19
書く場所

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>
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?