文字の色を変更するには、
AndroidManifest.xmlで
android:textColor=”#ffcc7a7a”を設定すればいいです。
” “で指定できるのは、”#rgb”, “#argb”, “#rrggbb”, “#aarrggbb”のいずれかです。
a: Alpha Channel(アルファチャネル)(透明度)
r: Red(赤)
g: Green(緑)
b: Blue(青)
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@drawable/bg" > <Button android:id="@+id/myButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="次のActivityへ" android:textColor="#ffcc7a7a" /> </LinearLayout>
その他のコードは、背景画像を加える。
と同じです。
コメント