用xml写android studio按钮蓝色
时间: 2023-03-31 08:03:24 浏览: 107
blue-button-xml:蓝色按钮XML解析基础结构
可以通过在布局文件中添加以下代码来设置按钮的蓝色背景:
```xml
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="按钮"
android:background="@drawable/blue_button_background" />
```
其中,@drawable/blue_button_background 是一个自定义的背景资源,可以在 res/drawable 目录下创建一个 XML 文件来定义它。例如,以下是一个简单的示例:
```xml
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#2196F3" />
<corners android:radius="4dp" />
</shape>
```
这个 XML 文件定义了一个矩形形状的背景,填充颜色为 #2196F3(Material Design 中的标准蓝色),四个角的圆角半径为 4dp。将这个文件保存为 blue_button_background.xml,放在 res/drawable 目录下,就可以在布局文件中使用它作为按钮的背景了。
阅读全文