2011-04-19 56 views
1

textView中的文本看起來像變灰了。TextView,文本灰顯

我想這樣設置文本的顏色,因爲當你點擊textView然後它看起來在黑色,因爲它啓用。

回答

4

對於改變的TextView的文本顏色,你需要設置其textColor屬性。

在XML文件中,你可以這樣做:

<TextView 
      android:text="Some text" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:textColor="#ffff00" 
      android:background="#ff0000" 
      /> 

通過編程可以使用設置TEXTCOLOR及其在TextView的背景:

text_view.setBackgroundColor(Color.RED); 
    text_view.setTextColor(Color.BLUE); 

希望這有助於。 !

0

試試這個代碼

text.setBackgroundColor(56565); 
    text.setEnabled(true); 

它將有助於ü