Create rounded_corner.xml
in the drawable
folder and add the following content,
<solid android:color="#ffffff" />
<padding
android:left="1dp"
android:right="1dp"
android:bottom="1dp"
android:top="1dp" />
<corners android:radius="5dp" />
Set this drawable in the TextView
background property like so:
android:background="@drawable/rounded_corner"
I hope this is useful for you.