我有这个网页视图,底部有一个文本框。该 问题是,当我点击此文本框时,键盘会弹出并覆盖 它。如何滚动Web视图以使文本框保持在上方 键盘。在i手机中,它会自动处理。
答案 0 :(得分:1)
最后我从这个卡住了......
我刚刚在wab活动声明类中的maniefest文件中添加了android:windowSoftInputMode="adjustResize"
。
并在style.xml文件中添加:
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
<item name="android:windowFullscreen">false</item>
<item name="android:windowNoTitle">true</item>
</style>
答案 1 :(得分:0)
在您的活动中添加此属性
<activity
android:name="YourActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden|adjustResize" />