I'am looking for a way to have a webview content selectable in the very same way as the stock browser does.

  • user long presses the text
  • the whole word is selected
  • two pins appear at the word's boundary allowing the user to stretch/shrink the selection.

I should note that Dolphin HD shows exactly the same text select functionality as the default browser (same icons, animation, etc), so it really should be possible. But I can't figure out how.

Until now, all i found was this function, which kind of work, but doesn't allow the user to expand/shrink the selection.

public void selectAndCopyText() 
{
    try {
     KeyEvent shiftPressEvent = new KeyEvent(0,0,KeyEvent.ACTION_DOWN,KeyEvent.KEYCODE_SHIFT_LEFT,0,0);
     shiftPressEvent.dispatch(mWebView);
    } catch (Exception e) {
        throw new AssertionError(e);
    }
}

EDIT: I just discovered that long touch copy/paste is part of HTC Sense, not Stock android. Still, it'd be useful to find out how to enable that on a webview, even just for HTC users. Anybody knows ?

link|improve this question

70% accept rate
! I just discovered that the text selection feature I described above is unique to HTC Sense. :( – tacone Jun 13 '10 at 13:27
hey tacone did you find your answer..i am a looking for it – Anil Jun 3 '11 at 13:19
sort of. in HTC code lies an own webview which extends the standard one. Guess it's called HTCWebview or something like that. So, probably, you would need to instantiate that, instead of the normal webview. That would, obviously pose some problem as java is a static language, and btw I didn't try. But it could be a good starting point. – tacone Aug 16 '11 at 10:31
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.