Android:锁定纵向模式 5 秒,然后允许更改屏幕方向
这可能吗?我目前有在方向改变时激活的意图,但经过一些测试后,如果手机在进入新类别时处于横向模式,则会出现问题。
Is this possible? I currently have intent that is activated when the orientation changes but after some testing it is a problem if the phone is in landscape mode when going the new class.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不明白为什么不。不过,您需要以编程方式执行此操作。我的第一个想法是创建一个可运行的活动。在 onCreate 中,锁定所需的方向并启动可运行线程。在可运行线程中,等待 5 秒,然后解锁方向。
I don't see why not. You would need to do it programmatically though. My first thought is to create an activity with a runnable. In your onCreate, lock the orientation that you want and kick off the runnable thread. In the runnable thread, wait 5 seconds and then unlock the orientation.