How can I disable multiwindow mode for an Activity in Android N+
问题 In the developer preview for Android N, multi-window support is enabled by default. How can I disable it for activites? Also what will happen if a multi-window enabled app launches my disabled activity? 回答1: In your manifest, you need: android:resizeableActivity="false" So in your manifest file, for each activity that you want to disable the feature in, it would be like: <activity android:name=".SomeActivity" android:label="@string/app_name" android:resizeableActivity="false" /> Or, if you