Android 最新版button按钮颜色
时间: 2023-09-09 19:05:46 浏览: 88
Android 最新版的 Button 按钮的颜色可以通过修改 Button 的 background 属性来实现。你可以使用以下代码将 Button 的背景颜色设置为蓝色:
```xml
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/blue"
android:text="Button" />
```
其中,@color/blue 是你在 colors.xml 文件中定义的蓝色颜色值,例如:
```xml
<resources>
<color name="blue">#2196F3</color>
</resources>
```
你可以根据自己的需要修改颜色值来实现不同的效果。
阅读全文