我已经阅读了文档并拥有下面的代码,但显然遗漏了一些东西。
Ti.Gesture.addEventListener('orientationchange', function (ev) {
if (Ti.Gesture.isLandscape(ev.orientation)) {
// Update your UI for landscape orientation
} else {
// Update your UI for portrait orientation
}
});
如上面评论中所述,我应该怎么做才能更新我的 UI?我有一个简单的 TabGroup,里面有 WebViews。我错过了什么?