/** * Set this on a textview and then you can potentially open links locally if applicable */ public class DefaultLinkMovementMethod extends LinkMovementMethod { private OnLinkClickedListener mOnLinkClickedListener; public DefaultLinkMovementMethod(OnLinkClickedListener onLinkClickedListener) { mOnLinkClickedListener = onLinkClickedListener; } public boolean onTouchEvent(TextView widget, android.text.Spannable buffer, android.view.MotionEvent event) { int action = event.getAction(); //http://stackoverflow.com/questions/1697084/handle-textview-link-click-in-my-android-app if (action == MotionEvent.ACTION_UP) { int x = (int) event.getX(); int y = (int) event.getY(); x -= widget.getTotalPaddingLeft(); y -= widget.getTotalPaddingTop(); x += widget.getScrollX(); y += widget.getScrollY(); Layout layout = widget.getLayout(); int line = layout.getLineForVertical(y); int off = layout.getOffsetForHorizontal(line, x); URLSpan[] link = buffer.getSpans(off, off, URLSpan.class); if (link.length != 0) { String url = link[0].getURL(); boolean handled = mOnLinkClickedListener.onLinkClicked(url); if (handled) { return true; } return super.onTouchEvent(widget, buffer, event); } } return super.onTouchEvent(widget, buffer, event); } public interface OnLinkClickedListener { boolean onLinkClicked(String url); } }