我創建了一個webview,當在webpage裡輸入信息時,我想讓軟鍵盤出現。
我用了下面兩種方法:
1)
InputMethodManager imm = (InputMethodManager) getApplicationContext().getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);
2)
webView.requestFocus(View.FOCUS_DOWN);
webView.setOnTouchListener(new View.OnTouchListener()
{
@Override
public boolean onTouch(View v, MotionEvent event)
{
switch (event.getAction())
{
case MotionEvent.ACTION_DOWN:
case MotionEvent.ACTION_UP:
if (!v.hasFocus())
{
v.requestFocus();
}
break;
}
return false;
}
});
我設法讓這個程序能在root後的samsung上運行,但是在nexus 7也root了,但是不能運行。
什麼問題呢?
照理說,在onTouch中requestFocus應該就可以了,不行就試試
webView.postDelayed(new Runnable() {
@Override
public void run() {
webView.requestFocus();
}
},long 毫秒);