我正在使用 react-native-webview 来查看 html。Html 包含像聊天窗口这样的输入框。如果我在 iOS 中为这个 webview 提供 url,它可以正常工作。但是在 android 中,如果我点击输入框键盘重叠在输入框上。
代码:
<WebView
originWhitelist={["https://*", "http://*", "file://*", "sms://*", "tel://*"]}
automaticallyAdjustContentInsets={false}
source={{ uri: 'http://sample.com/sample/chat.html' }}
scalesPageToFit={false}
injectedJavaScript={jsCode}
javaScriptEnabled={true} domStorageEnabled={true}
}
>
</WebView>