android按钮圆角
时间: 2023-07-22 16:24:44 浏览: 136
Android实现圆角Button按钮
要将 Android 按钮设置成圆角,可以按照以下步骤进行:
1. 创建一个 XML 文件来定义按钮的样式。例如,可以创建一个名为 `rounded_button.xml` 的文件。在该文件中,可以使用 `<shape>` 元素来定义按钮的形状,以及 `<corners>` 元素来定义按钮的圆角半径。
```
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<corners android:radius="10dp" />
<solid android:color="#33B5E5" />
</shape>
```
2. 在布局文件中使用该样式来设置按钮的背景。例如,可以在按钮的 `android:background` 属性中指定该样式。
```
<Button
android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="My Button"
android:background="@drawable/rounded_button" />
```
这样,按钮就会呈现出圆角的样式。可以根据需要调整圆角半径和按钮背景颜色。
阅读全文