Cordova / Phonegap IOS键盘滚动问题,显示白色背景

时间:2017-09-25 19:15:19

标签: ios cordova keyboard cordova-plugins phonegap

我目前正在开发使用Phonegap Build。在IOS上,当键盘显示并滚动视图以显示键盘当前位于前面时,视图显示已损坏。当用户丢失并且键盘关闭时,它会被修复。

问题在应用程序的所有页面上都是一致的,我花了相当多的时间研究,但我找不到任何有关此特定问题的答案,非常感谢任何和所有帮助。

如下所示的配置。 下面的图片试图尽我所能地证明这个问题。



<widget xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0" id="current.id" version="1.0.2">
  <name>Foobar</name>
  <description>an application</description>
  <content src="index.html"/>
  <preference name="DisallowOverscroll" value="true"/>
  <preference name="android-minSdkVersion" value="14"/>
  <preference name="Fullscreen" value="flase" />
  <preference name="StatusBarOverlaysWebView" value="true" />
  <preference name="prerendered-icon" value="true" />
  <preference name="permissions" value="none" />
  <preference name="orientation" value="portrait" />
  <gap:config-file platform="ios" parent="NSCameraUsageDescription" overwrite="true">
    <string>We are using the Camera for the profile picture..</string>
  </gap:config-file>
  <gap:config-file platform="ios" parent="NSPhotoLibraryUsageDescription" overwrite="true">
    <string>We are using the Camera for the profile picture..</string>
  </gap:config-file>
  <feature></feature>
  <plugin name="cordova-custom-config" source="npm" spec="~4.0.2" />
  <plugin name="cordova-plugin-battery-status" source="npm" spec="~1.1.1"/>
  <plugin name="cordova-plugin-console" source="npm" spec="~1.0.2"/>
  <plugin name="cordova-plugin-device" source="npm" spec="~1.1.1"/>
  <plugin name="cordova-plugin-device-motion" source="npm" spec="~1.2.0"/>
  <plugin name="cordova-plugin-device-orientation" source="npm" spec="~1.0.2"/>
  <plugin name="cordova-plugin-dialogs" source="npm" spec="~1.2.0"/>
  <plugin name="cordova-plugin-file" source="npm" spec="~4.1.1"/>
  <plugin name="cordova-plugin-file-transfer" source="npm" spec="~1.5.0"/>
  <plugin name="cordova-plugin-globalization" source="npm" spec="~1.0.3"/>
  <plugin name="cordova-plugin-inappbrowser" source="npm" spec="~1.3.0"/>
  <plugin name="cordova-plugin-splashscreen" source="npm" spec="~3.2.1"/>
  <plugin name="cordova-plugin-statusbar" source="npm" spec="~2.1.2"/>
  <plugin name="cordova-plugin-vibration" source="npm" spec="~2.1.0"/>
  <plugin name="cordova-plugin-whitelist" source="npm" spec="~1.2.1"/>
  <plugin name="cordova-plugin-camera" source="npm" spec="~2.1.1"/>
  <plugin name="cordova-plugin-media-capture" source="npm" spec="~1.2.0"/>
  <plugin name="cordova-plugin-media" source="npm" spec="~2.2.0"/>
&#13;
&#13;
&#13;

第1步:Image 1, Focus on the input.

第2步:Image 2, Scrolling slightly down while still focused on the input.

继续滚动会导致整个视图显示为白色,但最底部的提交按钮除外。

然后我可以点击背景/失去焦点,背景和输入将重新加载。

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

我认为这是css问题而不是cordova配置。默认情况下,只要键盘显示,iOS就会处理网页视图滚动。所以,如果您有任何额外的CSS来处理键盘显示屏上的页面滚动,请将其删除。