First, you have to make shape in drawable:
<shape android:shape="line" xmlns:android="http://schemas.android.com/apk/res/android">
<stroke android:color="@color/gray" android:width="1dp"/>
</shape>
After that, set this shape on the TextView.
android:background="@drawable/discount_line"