我正在尝试在单击时启动活动的文本字符串中创建可单击的链接。我使用 Linkify() 来检测文本中的链接。此功能能够添加文本链接,但只能添加 Web URL。我需要将我的输出转换为 ClickableSpan 以便我可以实现这种技术。
如何让 Linkify() 的已识别链接成为指向活动的 ClickableSpans?
以下是我在 Linkify 中使用的代码:
// Linkify parameters
final static Pattern pattern = Pattern.compile("\\[[^]]*]"); // defines the fact that links are bound by [square brackets]
final String scheme = "http://"; // TODO: Currently this is just a blank link
Linkify.addLinks(linkText, pattern, scheme);