Android 锁定方向但获取信息
我的应用程序被锁定在纵向方向,但我想知道是否有方向变化,将其锁定在清单中,使得 onconfigurationchange 在方向更改时不会触发,即使我包含配置更改。
android:configChanges="orientation|keyboardHidden"
android:screenOrientation="portrait"
有什么办法可以用这个配置触发 onconfigurationchanged 吗?
my app is locked in portrait orientation, but i want to know is there orientation change, locking it in manifest, makes onconfigurationchange not fire when orientation is changed even if i include configchanges.
android:configChanges="orientation|keyboardHidden"
android:screenOrientation="portrait"
is there any way to get onconfigurationchanged fired with this config?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定你是否可以混合使用 2 个。
您仍然可以使用加速度计来检查方向变化
I'm not sure you can mix the 2.
You can still use the accelerometer to check for orientation change though