使用Android HTML5和Javascript真的很令人沮丧。
这一次,我尝试找出加载DOM时当前屏幕尺寸(宽度)以及用户更改方向时的内容:
然后我尝试了这个片段:
var deviceWidth = window.orientation == 0 ? window.screen.width : window.screen.height;
if (navigator.userAgent.indexOf('Android') >= 0 && window.devicePixelRatio) {
deviceWidth = deviceWidth / window.devicePixelRatio;
}
在某些Android版本上,它会按方向更改,有些则不会。
有什么建议吗?
谢谢!
编辑/解决方案:
这就是我在Android和iOS上的工作方式:
$( window ).on( "orientationchange", function( event ) {
//console.log( "This device is in " + event.orientation + " mode!" );
var oc_timer;
clearTimeout(oc_timer);
oc_timer = setTimeout(function () {
//do your magic stuff with jQuery's $(window).width()
}, 500);
);
$( window ).orientationchange(); //fire it manually on page load
答案 0 :(得分:1)
在具有超时的绑定函数内部尝试,如下所示
$(window).bind( 'orientationchange', function(e){
setTimeout(function() {
var device_width = $(window).width();
},500);
});
在此处阅读更多内容:Device and Viewport Size In JavaScript
有关
- 如何获取视口大小
- 如何获取设备尺寸。
- 如何获取文档大小。
答案 1 :(得分:0)
此方法可以为您提供设备的尺寸:
Point size = new Point();
Display display = getWindowManager().getDefaultDisplay();
int height = 0;
int width = 0;
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.HONEYCOMB_MR2) {
display.getSize(size);
width = size.x;
height = size.y;
} else {
width = display.getWidth();
height = display.getHeight();
}