我正在使用 Android 4.0.3 。我正在尝试从 WebView 中选择文本并将其保存为字符串。我试过这个代码:
public void SelectText(){
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);
}
但它不起作用。在 Android 4 中已经有一个用于选择文本的内置菜单,但是如何覆盖这个菜单?