0

I have a simple MobileFirst hybrid app with only html/JS. On iOS7, when inputting data for a widget near the bottom of the screen, the widget becomes covered by the soft keyboard. This happens only for the app. If run it in mobile browser, it doesn't happen. On Android4.4.2, it happens in both mobile browser and the MobileFirst app. Noticed on Android, there is AndroidManifest.xml file for MobileFirst app, so tried setting android:windowSoftInputMode="stateHidden|adjustResize", that doesn't help. Is there any way to fix this problem?

Idan Adar
  • 44,156
  • 13
  • 50
  • 89

1 Answers1

0

For Android, try a combination of both:

For iOS:

Community
  • 1
  • 1
Idan Adar
  • 44,156
  • 13
  • 50
  • 89
  • I have tried your suggestions, for Android, your suggestion didn't work. We are still looking for solutions. For iOS, after add viewpoint meta tag: '' and apple's meta tag: '', the problem is fixed. – Jennifer Hu Feb 18 '15 at 14:29