Android Studio如何改变按钮颜色
时间: 2023-05-23 15:02:50 浏览: 106
改变按钮颜色的方法
4星 · 用户满意度95%
您可以通过在XML文件中设置Button标签的background属性来更改按钮颜色。例如,使用以下代码可以将按钮颜色更改为蓝色:
```xml
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click Me!"
android:background="@android:color/holo_blue_light"/>
```
阅读全文