我使用下面的textView方法來改變字體顏色。使用什麼格式來指定顏色?
public void setTextColor (int color)
給所有的狀態 (normal, selected, focused) 設置成 text 的顏色。
使用
text.setTextColor(#FF0000)
但是不是一個有效的語法。
TextView.setTextColor(Color.BLUE);
TextView.setTextColor(Color.RED);
或者 :
textView.setTextColor(Color.rgb(255,0,0)); // rgb( red , green , blue ) ;