android圆形按钮
时间: 2023-05-13 10:07:09 浏览: 71
Android圆形按钮
4星 · 用户满意度95%
您可以使用以下代码创建一个圆形按钮:
```
<Button
android:id="@+id/circle_button"
android:layout_width="50dp"
android:layout_height="50dp"
android:background="@drawable/circle_button_background"
android:text="Button" />
```
其中,@drawable/circle_button_background 是一个圆形背景的 drawable 文件,可以使用以下代码创建:
```
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid android:color="#FF4081" />
</shape>
```
这将创建一个直径为 50dp 的圆形按钮,背景颜色为 #FF4081。您可以根据需要更改大小和颜色。
阅读全文