我在钛appcelerator中遇到orientationchange
的问题。在标签之间移动时,在纵向和纵向之间切换时不会触发orientationchange
事件。景观。
这是我的代码
Titanium.Gesture.addEventListener('orientationchange', function(e){
var alertDialog = Ti.UI.createAlertDialog({
title: "Alert",
message: "Orientation is "+ e.orientation,
buttonNames: ['OK'],
cancel:0
});
alertDialog.show();
});
这是复制步骤:
任何人都有解决方法吗?
我需要这个,因为我必须更改视图onorientationchange
。
我正在使用Titanium Appcelerator 1.2.2,移动版1.6,Api 2.2
答案 0 :(得分:0)
答案 1 :(得分:0)
Ti.Gesture.addEventListener('orientationchange', function(e){
var alertDialog = Ti.UI.createAlertDialog({
title: "Alert", message: "Orientation is "+ e.orientation, buttonNames: ['OK'], cancel:0 }); alertDialog.show();
});