我有这个网络视图,底部有一个文本框。问题是当我单击此文本框时,键盘会弹出并覆盖它。如何滚动 Web 视图以使文本框保持在键盘上方。在我的手机中,它是自动处理的。
问问题
918 次
2 回答
1
最后我从这个卡住了..
我刚刚android:windowSoftInputMode="adjustResize"
在我的清单文件中添加了 wab 活动声明类。
并在 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>
于 2013-10-10T13:28:38.617 回答
0
在您的活动中添加此属性
<activity
android:name="YourActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden|adjustResize" />
于 2013-09-03T08:38:23.327 回答