I have TextView and it has URL. And I am using AutoLine="web" in XML layout.
Most of them work fine but there is a problem among some of them.
For instance, If there are two different URLs below,
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:autoLink="web"
android:text="http://sykwon.blog.me/" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:autoLink="web"
android:text="http://sy_kwon.blog.me/" />
Then the URL which doesn't have 'underscore' works fine, but the URL which has 'underscore' doesn't work well.
Normal operation is like there should be 'underline' under the URL, but it's not.
Since the 'underline', the link works.
I want to make it work both of them. Then what is the solution?
Anybody helps me plz.
Take care.