Is there a way how to remove "linkification" that was done by Linkify.addLinks(myEditText, Linkify.WEB_URLS);
?
It should be disabled by Linkify.addLinks(myEditText, 0);
, but it doesn't affect the linkified text at all. Even using myEditText.setLinksClickable(false);
has absolutely no effect (links are still clickable).
The only solution I have come up with is a little hacky:
myEditText.setText(myEditText.getText().toString());