Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to hide all toolbar/windows and buttons in Android Studio with a keyboard shortcut?

I know of the shortcut "Hide all tool windows" but that only minimizes the windows, it doesn't really hide the toolbars as well.

What i'm asking for is a keyboard shortcut to basically hide all tool windows + hide (toolbar, tool bar, status bar, navigation bar) which i otherwise have to manually go and toggle each time from the View File menu.

From this:

Android Studio screenshot with windows minimized but tool menus visible

to this:

Android studio zen mode nothing visible


So far, the best alternative i've found is to just hide them all. Go to the View menu and start hiding them all (Tool Buttons, Status bar, Navigation bar).

Android Studio/IntelliJ is pretty intelligent about showing you the right things as required, like if you start your app the "Run" options show up etc. and auto-hide.

I would love to have a keyboard shortcut that auto-hides/shows for me in one fell swoop.

Another nice alternative is to use the "Presentation mode" as @MrEngineer13 has suggested below, but the reason i don't like the presentation mode (after reducing the font size):

  1. it opens it up in an independent space on OSX. I could disable this at the OS level (as @Jerry101 points out, but i would like to have certain other apps use independent spaces).
  2. I can't see the tab names in presentation mode. My alternate solution allows this but is a tad bit more cumbersome.
like image 715
Kaushik Gopal Avatar asked Nov 02 '14 21:11

Kaushik Gopal


1 Answers

The closest thing would be to hide all tool windows by invoking the Hide All Tool Windows action. The shortcut for that is Ctrl + Shift + F12 (Default keymap).

This will hide all tool windows, effectively maximizing the editor window (though not full screen). The IntelliJ menu bar, toolbar, breadcrumb and tab bar will still be visible.

https://stackoverflow.com/a/10990239

like image 64
rofrol Avatar answered Oct 02 '22 12:10

rofrol