选择文字功能在Android3.1平板电脑中无法使用手机间隙。任何人都可以说出错了吗?这是我的代码。
try{
KeyEvent shiftPressEvent =
new KeyEvent(0, 0, KeyEvent.ACTION_DOWN,
KeyEvent.KEYCODE_SHIFT_LEFT, 0, 0);
Log.i(LOG_TAG, "before shiftPressEvent.dispatch");
shiftPressEvent.dispatch(super.appView);
Log.i(LOG_TAG, "after shiftPressEvent.dispatch");
}catch(Exception e){
throw new AssertionError(e);
}
答案 0 :(得分:0)
KeyEvent shiftPressEvent = new KeyEvent(0,0,KeyEvent.ACTION_DOWN,KeyEvent.KEYCODE_SHIFT_LEFT,0,0);
shiftPressEvent.dispatch(appView);