I'm trying to define autolink = "web" for a TextView. Surprisingly when I declare this, the text in the TextView goes hidded and gets visible only on the first click. This is so astonishing I've the same functionality in many part of my application where it works fine. This is the only place where I couldn't find what the problem is.
Please help me with a solution:
Here's my TextView XML code:
<TextView
android:id="@+id/details_webAddress_textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/details_location_textView"
android:drawableLeft="@drawable/icon_website_earth"
android:drawablePadding="5dp"
android:gravity="center"
android:padding="5dp"
android:singleLine="true"
android:autoLink="web"
android:text="www.google.com"
android:visibility="visible" />
Following is the TextView where the autolink works well:
<TextView
android:id="@+id/websiteAddress_textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:autoLink="web"
android:padding="5dp"
android:singleLine="true"
android:text="www.stackoverflow.com" />
try use: