在drawable檔案夾下建立一個xml(text_view_shape.xml)檔案,寫入一下代碼:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="2dp" />
<stroke
android:width="1dp"
android:color="@color/colorAccent" />
<padding
android:bottom="2dp"
android:left="4dp"
android:right="4dp"
android:top="2dp" />
</shape>
- corners 是邊角的弧度
- stroke是邊框的顔色和粗細
- padding是邊框距文字的距離
最後再布局檔案裡引用就可以了:
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="4dp"
android:background="@drawable/text_view_shape"
android:text="TextView" />