8

Android で XML を使用して RGB 形式の色を指定する例を挙げてください。構文は #rrggbb.

4

2 に答える 2

21

次のように XML で RGB 形式の色を指定できます。

<TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="Test text"
            android:textColor="#332116"
            android:textSize="16sp"
            android:textStyle="bold" />

一般形:

android:textColor="#332116" is "#rrggbb"
于 2012-10-22T04:40:31.317 に答える
3

任意の背景色を提供するには

android:background="#rrggbb"

テキストに色を付けるには

android:textcolor="#rrggbb"

このページを使用して、16 進形式で正しい RGB 値を見つけることができます

カラーピッカー

xml でコメントを指定するには

    <!--android:textColor="#332116"-->
<TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="Test text"
            android:textColor="#332116"
            android:textSize="16sp"
            android:textStyle="bold" />
于 2012-10-22T04:39:10.180 に答える