屏幕方向在android eclipse构建中不起作用

时间:2014-02-09 08:29:54

标签: android eclipse jquery-mobile cordova screen-orientation

我开发了一个jquery mobile + phonegap应用程序。当我从build.phonegap.com制作apk时,应用程序屏幕方向非常好。现在我已经在eclipse中创建了一个android项目,导入了cordova,每件事情都很好但不是屏幕方向。由于未正确调整屏幕,因此以下功能无法启动。当我旋转屏幕时,控制进入应用程序的主屏幕。

以下是代码:

window.onresize=function(){
    // I adjust screen here
};

var _orientation=null;

$(window).bind('orientationchange', _orientationHandler);
function _orientationHandler(event){
   if(event.orientation){
        _orientation=event.orientation; 
    } 
}

0 个答案:

没有答案