android textview 点击链接
如果我有一个包含从 Html.fromHtml(source) 获取的跨区文本的文本视图,如何使文本视图在单击链接时做出反应?在我的文本视图中,链接类似于“单击此处”,并且此文本是一个链接,而不是像 www.google.com 这样的直接链接。
If I have a textview with spanned text obtained from Html.fromHtml(source), how to make the textview to react when I click on a link? In my textview, link is something like "click here" and this text is a link, it's not a direct link like www.google.com.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用黄油 Linkify
请参阅使用 Linkify 的 Android 文本链接
Butter to use Linkify
Refer Android Text Links Using Linkify
我猜你想自己处理跨度点击事件。
有两种方法:
1)创建新类扩展URLSpan
2)创建新类扩展LinkMovementMethod
请参阅下面的网址,可能会对您有所帮助。
https://stackoverflow.com/a/16182500/596555
I guess you want to handle span click event by yourself.
There two ways for this:
1)Create new class extends URLSpan
2)Create new class extends LinkMovementMethod
Please see below url, may be help you.
https://stackoverflow.com/a/16182500/596555
将此代码添加到您的 tetView
将此行添加到 string.xml [ res/values]
将此代码添加到您的 MainActivity.java
Add this to your tetView
Add this line to string.xml [ res/values]
Add This code to your MainActivity.java