4

I have a Phonegap application for Android with jQuery Mobile. On an HTC Desire, if an input box is focused, it always go to the front, no matter which elements has above.

screenshot

Gilles 'SO- stop being evil'
  • 104,111
  • 38
  • 209
  • 254
DCaballero
  • 93
  • 7
  • This is a known issue with android. Checking with the platform developers site is a great way to find out if what your experiencing is a bug or not. http://code.google.com/p/android/issues/detail?id=18370 – Jeemusu Aug 17 '12 at 23:47
  • Did you add similar to below code to remove flickering in your app?.ui-page { -webkit-backface-visibility: hidden; } Above code has side effects in Android .Please comment code and try it. – rpelluru Nov 24 '12 at 13:30

1 Answers1

0

Did you try to apply the css property -webkit-transform : translate3d(0,0,0); to your input field ?

Kevin P
  • 41
  • 1