i need some help for textview style. I need textview with underline. I made some layout xmls. But cant get any succes.
I want have to make that line at the same line with edittexts bottom line. Here my xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:left="2dp"
android:right="10dp"
android:top="20dp">
<shape android:shape="line" >
<stroke
android:width="1dp"
android:color="@color/colorPrimary"/>
<padding
android:bottom="0dp"
android:left="5dp"
android:right="5dp"
android:top="0dp" />
</shape>
</item>
</layer-list>
How i can do it.