文字の色を変更する

文字の色を変更するには、

AndroidManifest.xmlで

android:textColor=”#ffcc7a7a”を設定すればいいです。

” “で指定できるのは、”#rgb”, “#argb”, “#rrggbb”, “#aarrggbb”のいずれかです。

a: Alpha Channel(アルファチャネル)(透明度)
r: Red(赤)
g: Green(緑)
b: Blue(青)

textchange

<?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>

その他のコードは、背景画像を加える。

と同じです。

中堅サーバエンジニア

中堅サーバエンジニア現在Unity勉強中

都内で10数年、Web系のアプリケーション開発をしています。 プログラミング、ゲーム、株とかのブログを書いています。

関連記事

コメント

この記事へのコメントはありません。