android studio textView 带框
时间: 2023-10-30 07:05:01 浏览: 80
android 添加边框的 textview
你可以使用 `android:background` 属性为 TextView 设置一个背景框,例如:
```
<TextView
android:id="@+id/myTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:padding="10dp"
android:background="@drawable/textview_border" />
```
然后在 `res/drawable` 目录下创建一个名为 `textview_border.xml` 的 drawable 文件,文件内容如下:
```
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<stroke
android:width="2dp"
android:color="@color/black" />
<solid android:color="@color/white" />
</shape>
```
这个 drawable 文件定义了一个带黑色边框和白色背景的矩形形状,可以根据需要修改颜色和边框宽度。
阅读全文