Sets the movement method (arrow key handler) to be used for this TextView. This can be null to disallow using the arrow keys to move the cursor or scroll the view.
Be warned that if you want a TextView with a key listener or movement method not to be focusable, or if you want a TextView without a key listener or movement method to be focusable, you must call setFocusable(boolean)
again
after calling this to get the focusability back the way you want it.
使用:
textview.setMonvementMethod(new LinkMovementMethod());
见官网
原文:http://blog.csdn.net/leehu1987/article/details/23540955