Android 获取从 TextView 单击的超链接的 url'文本
我有一个文本视图,其文本是一些 html,包括超链接。我已经设置了 textview 属性 android:autoLink="web"
,以便当用户单击链接时,链接会在浏览器中打开。现在我想在单击时获取 url,因为我从服务器获取的 URL 也有绝对地址和相对地址。我想将其设置为绝对,以防 url 是相对的。有什么想法吗?
I have a textview whose text is some html including hyperlinks. I have set the textview property android:autoLink="web"
so that when user clicks the link, the link open in a browser. Now I want to get url when clicked because URLs I am getting from server, have absolute and relative addresses as well. I want to make it absolute in case url is relative. Any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 TextView 点击函数上编写 if 语句以将相对 url 操作为绝对 url。
write an if statement on TextView click function to manipulate relative urls to absolute.