Android soft Keyboard not open in webView`

后端 未结 5 604
轻奢々
轻奢々 2021-02-08 04:56

I m Using WebView in AlertDialog to authenticate user to twitter. but When i click on field in webview ,android keyboard doesnt open. here is my code that shows how i added webv

5条回答
  •  情歌与酒
    2021-02-08 05:44

    I am using a PopupWindow with a WebView inside it and experienced the same problem, but if I set focusable to true in the parent the problem goes away:

    popupWindow.setFocusable(true);
    

    Hope this helps!

提交回复
热议问题