Android 带边框的Textview
1 编写矩形边框的Drawable
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<!-- 设置边框-->
<stroke android:width="1dp" android:color="#BDBDBF"/>
</shape>
2 在布局文件中TextView中的背景中引用
<TextView
android:layout_width="88dp"
android:layout_height="88dp"
android:textSize="14sp"
android:gravity="center"
android:background="@drawable/txt_rectborder"
android:text="带边框的Textview"
/>
3 效果图