【EasyClick】【安卓】EasyClick判断屏幕横竖屏,是否旋转,获取设备横竖屏方向,判断屏幕方向
/*** @description 获取设备横竖屏方向
* @return {Boolean} true 竖屏 false 横屏
*/
isRotate = function () {
return !(context.getResources().getConfiguration().orientation === android.content.res.Configuration.ORIENTATION_PORTRAIT)
}
页:
[1]