2014-06-24 61 views
0

問題: -我正在開發一個有2個字段的android應用程序。當專注於字段時,虛擬鍵盤將隱藏/重疊在這些字段上。所以從here我找到了解決方案<preference name="fullscreen" value="false" />。但它會導致顯示STATUS BAR並且UI將向上推。因此,我恢復了原狀。Phonegap的Android應用程序全屏鍵盤構建

問題: -是否有任何的jQuery補丁或PhoneGap的插件,使虛擬鍵盤全屏[風景和肖像模式]你可以看到下面的圖片:

Full screen android keyboard

請回復儘快地!提前致謝。 問候,

回答

0

好吧,我終於解決了這個問題,下面的jQuery補丁:

//JS : OnReady event: 

var windowHeightSeventyPercent = parseInt(screen.height * 0.7); //To support multiple devices 

$("input").focusin(function(){ 
    $("body").height($("body").height()+parseInt(windowHeightSeventyPercent)); //Make page body scroll by adding height to make user to fillup field. 
}); 

$("input").focusout(function(){ 
    $("body").height($("body").height()-parseInt(windowHeightSeventyPercent)); 
}); 
相關問題