Explanation
I have used textview inside that there is a link, when i click on that it goes to the webpage. To create a link i used anchor tag of html.
This is the xml file where i created the link
<TextView
android:text="@string/Home"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="fill_horizontal"
android:layout_weight="0.5"
android:clickable="true"
android:textColorLink="#b3b3b3"
android:textSize="15dp"
android:id="@+id/Terms" />
This is the string.xml file where i created the link
<string name="Home"><a href="https://www.google.co.in/ " style="color:rgb(179, 179, 179);text-decoration:none">Home</a>
I tried using the css style text-decoration:none which doesn't work.
Also i tried from this link Remove underline from links in TextView - Android In that spannable doesn't work in c#
Question
How can i remove the underline from the hyperlink?