728x90
반응형
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.
728x90
반응형
'공부하는 하스씨 > 안드로이드' 카테고리의 다른 글
test sample video (0) | 2010.11.05 |
---|---|
안드로이드에서 SQLite DB 사용하기 (0) | 2010.10.25 |
다국어 사이트를 위한 문자셋과 코드페이지 (0) | 2010.02.24 |
[펌강좌] 문자셋, 인코딩 이야기 #7 (0) | 2010.02.23 |
[펌강좌] 문자셋, 인코딩 이야기 #6 (0) | 2010.02.23 |