When I use Linkify.addLinks(mText, Linkify.ALL) to a TextView.The URL will highlight. But my problem is how to remove it? Example:click a menu,and the AutoLink will disappear.
I used mText.setAutoLinkMask(0);
mText.setText(mText.getText());
But it does not work.


