问题标签 [urlspan]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - 在 Android TextView 中用自定义文本超链接 url 动态替换 url
假设您有以下字符串:
“https://google.com to go to google. https://amazon.com to go to Amazon”。
在 TextView 中,您如何将 url 替换为显示“单击此处”(或西班牙语中的“Haz clic aquí”)的链接,并将您带到正确的 url?
请记住,文本是动态的,它是从 API 中检索的,并且无法知道任何给定帖子中是否或有多少链接。
成品应如下所示:
“<a href="https://google.com" rel="nofollow noreferrer">点击此处前往 google。 点击此处前往亚马逊。”</p>