For a hybrid application, i need to build the web part of the application.
I defined that the html and body is 100% of the viewport. I thought this was a good idea, but it turns out that Android changes the viewport when the touch keyboard is showed. So it resizes all elements on the page. This is not the behaviour that I want.
Is it possible to position and give dimensions on elements based on the device height, without interference from the touch keyboard?
problem shows here http://betapreview.nl/playground/overflow-table/index2.html
What I did try already
option 1
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1.0; maximum-scale=1.0; user-scalable=no">
example: http://betapreview.nl/playground/overflow-table/index2.html
option 2
var theHeight = $(document).height();
$("#wrapper").css("height", theHeight);
example: http://betapreview.nl/playground/overflow-table/index3.html