AndroidStudio中Button设置成矩形
时间: 2024-09-12 11:12:32 浏览: 76
android studio xml文件实现添加注释
在Android Studio中,如果你想要让Button呈现为矩形而不是默认的椭圆形,你需要自定义它的形状。这通常通过改变Button的背景图或者使用XML布局文件来完成。以下是两种常见的方法:
1. **使用XML布局文件**:
- 打开`res/drawable`文件夹,创建一个新的xml文件,比如`round_button.xml`。
- 在文件里添加一个Shape元素,并设置其为Rectangle Shape:
```xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@android:color/white" /> <!-- 设置背景颜色 -->
<corners android:radius="0dp" /> <!-- 设置角为直角 -->
<padding android:left="4dp" android:right="4dp" android:top="4dp" android:bottom="4dp" /> <!-- 添加边距 -->
</shape>
```
- 然后在Button的layout文件中引用这个背景:
```xml
<Button
android:id="@+id/myButton"
android:background="@drawable/round_button"
...其他属性.../>
```
2. **动态设置背景图片**:
如果你想程序运行时动态改变按钮样式,可以在代码中这样做:
```java
Button myButton = findViewById(R.id.myButton);
// 使用BitmapDrawable或者ShapeDrawable
Drawable drawable = new BitmapDrawable(getResources(), BitmapFactory.decodeResource(getResources(), R.drawable.round_button_bitmap));
myButton.setBackground(drawable);
```
阅读全文