shape.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<corners android:radius="20dp"/>
<solid android:color="#F2F2F2"/>
<stroke android:width="1dp" android:color="#797979"/> <!--这是线-->
</shape>
layout_main.xml
<TextView
android:background="@drawable/shape"
/>