如何从TextView android中删除不需要的链接?

时间:2016-05-23 09:15:29

标签: android hyperlink textview autolink

我设置了自动链接=网页,但是当TextView文字点缀任何字符(例如“i.want”)时会创建不需要的链接,它会创建链接,因为它必须阻止此操作 我尝试从字符串中删除点,但不会生成鸟嘌呤链接 给它一些解决方案

代码

  

linktxt.setText(myObj.getpost());

帖子将来自api。

谢谢

1 个答案:

答案 0 :(得分:0)

试试这个

TextView textView =(TextView)findViewById(R.id.textView);
textView.setClickable(true);
textView.setMovementMethod(LinkMovementMethod.getInstance());
String text = "This is Neel.desai I want to navigate <a href='http://www.google.com'> Google </a>";
textView.setText(Html.fromHtml(text));

请点击此处获取更多帮助Android: textview hyperlink