Prevent android to split-screen

Add android:resizeableActivity='false' to the manifest.
This commit is contained in:
Xavier Sellier 2018-03-20 21:33:28 -04:00
parent 940bab2734
commit 7535698c8a

View File

@ -16,8 +16,9 @@
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:launchMode="singleTask"
android:screenOrientation="landscape"
android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize">
android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize"
android:resizeableActivity="false">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />