我有一些片段A B C D在MainViewActivity中提交 . C是允许旋转的片段(纵向或横向),片段ABD的方向是纵向 .

这是清单中的配置: android:configChanges="orientation|screenSize"

我在MainViewActivity的 onCreate 中调用了setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT)方法 . 在片段C中,我在onCreateView中调用了:getActivity() . setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED) .

My issue: - 当我们将设备旋转到横向并打开应用程序时,片段A将旋转为横向,并在2秒后旋转为纵向 . 它正好发生在OS 8.0(奥利奥)上 . 我不知道为什么 .