vote up 0 vote down star

The browser does this by calling public void emulateShiftHeld() method on the WebView which is hidden in the SDK. Any other options? TIA.

flag

1 Answer

vote up 0 vote down check

From the class that extends WebView:

public void selectAndCopyText() {
    try {
    	Method m = WebView.class.getMethod("emulateShiftHeld", null);
    	m.invoke(this, null);
    } catch (Exception e) {
    	throw new AssertionError(e);
    }
}

And then you have to use ClipboardManager to watch for new text.

P.S. Historical note: this hack is based on Android 1.5 WebView implementation.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.