Skip to content

Commit

Permalink
修复某些配置情况下,相册配置了横屏后,会先显示竖屏再变成横屏
Browse files Browse the repository at this point in the history
  • Loading branch information
aaatttcccc committed Sep 26, 2022
1 parent 64ac2b2 commit 855b4de
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions multilibrary/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,22 @@
android:name=".MainActivity"
android:configChanges="orientation|screenSize"
android:hardwareAccelerated="true"
android:screenOrientation="locked"
android:launchMode="singleTop" />
<activity
android:name=".preview.SelectedPreviewActivity"
android:configChanges="orientation|screenSize"
android:screenOrientation="locked"
android:launchMode="singleTop" />
<activity
android:name=".preview.AlbumPreviewActivity"
android:configChanges="orientation|screenSize"
android:screenOrientation="locked"
android:launchMode="singleTop" />
<activity
android:name=".camera.ui.previewvideo.PreviewVideoActivity"
android:configChanges="orientation|screenSize"
android:screenOrientation="locked"
android:launchMode="singleTop" />

</application>
Expand Down

0 comments on commit 855b4de

Please sign in to comment.