我想在TextView中添加颜色..使用您选择的任何颜色

时间:2014-02-26 14:23:50

标签: android colors textview

我希望得到TextView颜色..请告诉我一个代码..用你选择的任何颜色..

    <TextView 
    android:layout_height="wrap_content" 
    android:layout_width="match_parent" 
    android:layout_margin Left="5 pt" 
    android:layout_margin Right="5 pt" 
    android:text Size="12 pt" 
    android:layout_margin Top="3 pt" 
    android:id="@+id/  Result" 
    android:gravity="center_horizontal"> 
    </TextView>

2 个答案:

答案 0 :(得分:4)

使用textColor XML属性,例如:

android:textColor="#ffffff"

您的整个TextView将如下所示:

<TextView 
    android:layout_height="wrap_content" 
    android:layout_width="match_parent" 
    android:layout_marginLeft="5pt" 
    android:layout_marginRight="5pt" 
    android:textSize="12pt" 
    android:layout_marginTop="3pt" 
    android:id="@+id/Result" 
    android:gravity="center_horizontal"
    android:textColor="#ffffff"/> 

答案 1 :(得分:0)

您还可以使用一些内置颜色,如:

android:textColor="@android:color/holo_orange_dark"