程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android softkeyboard-webview 中 Soft Keyboard 和 Hard keyboard 同時出現

android softkeyboard-webview 中 Soft Keyboard 和 Hard keyboard 同時出現

編輯:編程綜合問答
webview 中 Soft Keyboard 和 Hard keyboard 同時出現

我創建了一個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 毫秒);

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved