android studio textView 带边框
时间: 2023-10-30 17:05:06 浏览: 120
你可以通过设置 TextView 的背景来实现带边框的效果。可以使用 shape drawable 来定义边框样式并将其设置为 TextView 的背景。
以下是一个示例:
1. 创建一个名为 `border.xml` 的 drawable 文件,并将其放在 `res/drawable` 目录下。
2. 在 `border.xml` 文件中定义一个 shape drawable,设置其边框颜色、宽度和填充颜色。
```xml
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<stroke
android:width="1dp"
android:color="#000000" />
<solid android:color="#ffffff" />
</shape>
```
3. 在布局文件中使用 TextView,并将 `android:background` 属性设置为刚才定义的 drawable 文件的名称。
```xml
<TextView
android:id="@+id/text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:background="@drawable/border" />
```
这样就可以实现一个带边框的 TextView 了。你可以根据需要调整边框的样式和颜色。
阅读全文