Android: Clickable TextView with Linkified links

試著忘記壹切 提交于 2019-12-06 04:38:45

try add an attribute "android:autoLink="web"" to the textview

Also, I have struggled hours against the TextView before realizing that

<resources>
  <string name="mytext">Going to <a href="http://www.google.fr/">Google</a> is linkifed but NOT clickable</string>
</resources>

But this is:

<resources>
  <string name="mytext">Go to http://www.google.fr/ is linkified and clickable</string>
</resources>

In both cases, the link is recognized and styled accordingly.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!