如何简单地处理方向变化?
我不是在谈论做任何花哨的事情。我只是希望标准窗口和视图在用户旋转设备时旋转。
I'm not talking about doing anything fancy. I'd just like the standard windows and views to rotate when the user rotates the device.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要告诉窗口它应该支持哪些方向:
然后您可以使用侦听器来侦听方向变化,如下所示:
编辑:我认为(虽然我从未尝试过)您也可以在 tiapp.xml 中设置它,其中具有自动应用于所有窗口的额外好处。
You need to tell the window which orientations it should support:
You can then listen on the orientation changes with a listener like so:
Edit: I think (though I've never tried it) you can also set this in tiapp.xml, which has the added benefit of applying to all windows automatically.
这是 Android 默认的工作方式。但不适用于 iPhone,所以只需编写这段代码
,我认为这对您有用。
this is work on android default. But not work on iphone, so just write this code
I, THINK THIS IS USEFUL TO YOU.