Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个 Android 应用程序。在那个我有一个 webview 并且我将我的服务器 url 加载到那个 webview 中,比如说。
WebView.loadUrl("serverurl");
它还有 1 个刷新按钮。单击它,再次加载 webview。但问题是单击刷新按钮后,单击来自服务器的登录页面的文本框后,Android 键盘未显示以键入任何内容。
不知道如何解决这个问题。
这个链接真的很有帮助: 为什么 Android WebView 拒绝用户输入?
刚刚添加
webView.requestFocus(View.FOCUS_DOWN);
它解决了这个问题。