Android中是使用shape画边框
时间: 2023-11-11 11:21:35 浏览: 108
Android中shape的使用
5星 · 资源好评率100%
在 Android 中,可以使用 shape 资源来绘制边框。shape 是一种 XML 文件格式,用于定义形状和风格。以下是使用 shape 绘制边框的步骤:
1. 创建一个 shape 资源文件,例如 border_shape.xml。在该文件中,使用 shape 标签定义边框的形状和风格,例如:
```
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@android:color/transparent" />
<stroke
android:width="1dp"
android:color="#FF0000" />
<corners android:radius="4dp" />
</shape>
```
上述代码定义了一个矩形形状,边框宽度为 1dp,颜色为红色,四个角的圆角半径为 4dp。其中,solid 标签用于填充形状内部的颜色,这里设置为透明。
2. 在布局文件中,将对应的 View 的背景设置为该 shape 资源即可,例如:
```
<View
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/border_shape" />
```
这样,该 View 就会显示出一个带边框的矩形形状。可以根据需要调整 shape 资源中的属性来修改边框的风格和形状。
注意:如果要在代码中动态设置边框,可以使用 setBackground 方法来设置 View 的背景。例如:
```
view.setBackground(ContextCompat.getDrawable(context, R.drawable.border_shape));
```
阅读全文