在Android中,要設置按鈕(Button)的文本顏色,你可以使用以下兩種方法:
方法一:在XML布局文件中設置
<Button>
標簽內,添加android:textColor
屬性,并指定你想要的顏色值。顏色值可以是十六進制顏色代碼(如#FF4081
),也可以是常見的顏色名稱(如red
、blue
等)。示例:
<Button
android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click me!"
android:textColor="#FF4081" />
方法二:在Java或Kotlin代碼中設置
setTextColor()
方法為按鈕設置文本顏色。你可以使用Color.parseColor()
方法將十六進制顏色代碼轉換為Android可識別的顏色整數,或者直接使用顏色資源ID。Java示例:
Button myButton = findViewById(R.id.my_button);
myButton.setTextColor(Color.parseColor("#FF4081"));
Kotlin示例:
val myButton = findViewById<Button>(R.id.my_button)
myButton.setTextColor(Color.parseColor("#FF4081"))
注意:如果你使用的是顏色資源ID(如R.color.my_color
),則需要確保在你的項目中定義了相應的顏色資源。