レイアウトで文字色や背景色を変更

レイアウト(xmlファイル)で色を設定する方法
背景色
android:background=”#0000FF”
文字色
android:textColor=”#0000FF”

[xml title=”layout.xml”]
<!– 背景が赤のTextView –>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#FF0000"/>

<!– 背景が青のTextView –>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#0000FF"/>

<!– 文字色が赤のTextView –>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#FF0000"/>

<!– 文字色が青のTextView –>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#0000FF"/>
[/xml]

Comments are closed.