i have created a textview with underline text like this
<TextView
android:id="@+id/label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text = "@string/underline_text"
android:clickable = "true"
android:focusable = "true"
android:focusableInTouchMode="true"
android:isScrollContainer="true"
android:textColor = "#0000FF"
android:layout_marginLeft = "48dp"
/>
with string mapped to
<string name="underline_text"><u>Hello</u></string>
i am getting underline text i am not being able to get focus while touching it or while scrolling between views .
Please anyone have any idea how to get this done.
Thanks