android Textview边框设置
时间: 2023-07-22 11:25:51 浏览: 138
TextView 加边框
要设置 `TextView` 的边框,可以使用 `android:background` 属性。你可以将一个形状文件设置为 `TextView` 的背景,这个形状文件定义了边框的样式和颜色。
以下是一个示例,设置一个灰色的边框,边框的宽度为 2dp:
1. 创建一个形状文件,例如 `border.xml`,并将其保存在 `res/drawable` 目录下。
```xml
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<stroke android:width="2dp" android:color="#808080" />
<solid android:color="@android:color/transparent" />
</shape>
```
2. 将 `TextView` 的 `android:background` 属性设置为这个形状文件:
```xml
<TextView
android:id="@+id/my_textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:background="@drawable/border" />
```
这样就可以在 `TextView` 的周围添加一个灰色的边框了。你可以根据需要调整边框的宽度和颜色。
阅读全文