android studio button圆角
时间: 2023-04-23 17:02:28 浏览: 298
Android实现圆角Button按钮
5星 · 资源好评率100%
要将Android Studio中的按钮设置为圆角,可以使用以下步骤:
1. 在XML布局文件中,将按钮的背景设置为圆角矩形的drawable资源文件。例如:
```
<Button
android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click me"
android:background="@drawable/my_button_background" />
```
2. 创建一个drawable资源文件,例如my_button_background.xml,将其放置在res/drawable文件夹中。在该文件中,使用shape元素来定义圆角矩形的形状和颜色。例如:
```
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="20dp" />
<solid android:color="#FF4081" />
</shape>
```
在上面的代码中,corners元素定义了圆角的半径,solid元素定义了填充颜色。
3. 在代码中,可以使用findViewById方法获取按钮实例,并设置点击事件等。例如:
```
Button myButton = findViewById(R.id.my_button);
myButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// do something
}
});
```
阅读全文