怎么设置Button控件的文字颜色
时间: 2024-02-24 18:53:36 浏览: 147
lxc.rar_btncolor_caption button_按钮 颜色
你可以使用以下方法来设置Button控件的文字颜色:
1. 在xml文件中设置Button的文字颜色
```
android:textColor="@color/my_button_text_color"
```
其中,@color/my_button_text_color是自定义的颜色值,你需要在colors.xml文件中定义这个颜色值。
2. 在Java代码中设置Button的文字颜色
```
button.setTextColor(getResources().getColor(R.color.my_button_text_color));
```
其中,R.color.my_button_text_color是自定义的颜色值,你需要在colors.xml文件中定义这个颜色值。
阅读全文