原因1:
<activity
android:name=".MainActivity"
android:screenOrientation="portrait" <!-- 垂直锁定 -->
android:theme="@style/AppAppTheme">
原因2:
<style name="AppAppTheme" parent="AppTheme">
<!-- 任选一个都会报错 -->
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowSwipeToDismiss">true</item>
<item name="android:windowIsFloating">true</item>
</style>
解决方案:根据情况去掉垂直锁定,或者相关主题属性。