Android Studio 4.1.1 macOS Full Screen Error

AndroidMacosAndroid Studio

Android Problem Overview


I've got a problem after updating Mac to Big Sur 11.0.1.

All interstitial dialog windows, Device Manager, Preferences, SDK options, and etc, are not opened as interstitials/dialogs in fullscreen mode, but as a tab in-app. Then, Android Studio freezes and is not responding.

i.e.: Commit Changes Window

enter image description here

Any ideas how to fix it? Thanks!

Android Solutions


Solution 1 - Android

System Preferences > General > set Prefer Tabs to never when opening documents.

Alternatively, run this on Terminal and restart Android Studio:

defaults write com.google.android.studio AppleWindowTabbingMode manual

This works while keeping the tabs active for other apps.

Solution 2 - Android

Go to the Apple Menu, select System Preferences > General. In the Prefer tabs when opening documents option, select "never". Then restart Android Studio.

Solution 3 - Android

I solved by clicking the  -> System Preferences -> General -> Prefer Tabs and select "never". I have no problem using the latest version of IDEA, it may be that the version of IDEA on which Android Studio is based low.

Solution 4 - Android

You can try : System Preferences > General > Prefer Tabs and set #never when opening documents. I hope solved this problem.

Solution 5 - Android

I think the ideal place to fix this is in the native code in the app launcher. In AppBundler we recently made this change which sets the tab mode before loading the JVM. It's basically the in-app equivalent of running "defaults write" in the terminal but doesn't require executing a process.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionMarian StochanskyiView Question on Stackoverflow
Solution 1 - AndroidButakov IgorView Answer on Stackoverflow
Solution 2 - AndroidTony LipView Answer on Stackoverflow
Solution 3 - AndroidlearniceView Answer on Stackoverflow
Solution 4 - AndroidMehedi HasanView Answer on Stackoverflow
Solution 5 - AndroidSean ReillyView Answer on Stackoverflow