使用后
Linkify.addLinks(content, pattern_glos, scheme_glos, null, glosFilter);
日志写入
11-22 21:19:15.319: W/TextView(14718): TextView does not support text selection.
Action mode cancelled.
文本不可选择。
我需要两者和链接和可选。
最佳答案
要使TextView
中的链接可单击,您需要调用textView.setLinksClickable(true);
和textView.setMovementMethod(LinkMovementMethod.getInstance());