Hello,
I am using SAP UI5 with simple VBox having 10 inputs when i keep the focus on the input fields which are at the bottom of screen the screen enables scroll and keep the focus on input as expected. Img1
Focus set on Input 7:

Where as if i am in full screen mode, the key board is over laying on the input on which the focus is set. Img2.
Focus set on Input 7:

Code used for full screen mode:
fnFullScreen:function () {
var oEle = document.getElementById('content');
if (oEle.requestFullScreen) {
oEle.requestFullScreen();
} else if (oEle.mozRequestFullScreen) {
oEle.mozRequestFullScreen();
} else if (oEle.webkitRequestFullScreen) {
oEle.webkitRequestFullScreen();
} else if (oEle.msRequestFullscreen) {
oEle.msRequestFullscreen(); }
};
Please suggest.
Best Regards,
Bhaskar.