选择文字功能。使用android3.1平板电脑无法在webview中工作。

时间:2012-01-17 08:42:51

标签: android webview

选择文字功能在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);   
          }

1 个答案:

答案 0 :(得分:0)

KeyEvent shiftPressEvent = new KeyEvent(0,0,KeyEvent.ACTION_DOWN,KeyEvent.KEYCODE_SHIFT_LEFT,0,0);
shiftPressEvent.dispatch(appView);