33

I want to enter full screen mode in Android Studio. Is there any Keyboard Shortcut for doing it. What Is the Keyboard Shortcut key for enter and exit full screen mode in Android Studio?

Ahmer Afzal
  • 501
  • 2
  • 11
  • 24
manDroid
  • 1,125
  • 3
  • 13
  • 25

8 Answers8

40

In Android Studio -> MenuBar -> View -> Enter Full Screen

Though there are other options as well which you might like such as Presentation Mode and Distraction free mode

For maximizing the editor pane Ctrl + Shift+ F12 will work on windows.

You Should also check this reference

Full screen is not mapped to any shortcuts by default. but you can define your own shortcuts. Please check this document.

Hope this will help.

Agilanbu
  • 2,747
  • 2
  • 28
  • 33
MrDumb
  • 2,140
  • 1
  • 21
  • 31
  • 1
    In the Mac version (2.2.3) it IS mapped by default to control + command + F to enter/exit full screen mode. – jk7 Feb 28 '17 at 19:16
33

Only for Windows: it's not shortcut but kind of it :)

To Enter/Exit Full screen mode

1. Alt + V (will access Menu -> View) 
2. Arrow Up ^
3. Enter

UPDATE: Looks like the same keys work on Ubuntu too :)

fdermishin
  • 3,519
  • 3
  • 24
  • 45
Bharatesh
  • 8,943
  • 3
  • 38
  • 67
14

It's easy. Press ctrl+alt+s or open File > Settings > Keymap and open Keymaps select box the default one. Below the select box, type full screen in the search box and right click on the result to set your shortcut. That's it. Demonstration of how the process is done

Umut ADALI
  • 1,146
  • 1
  • 14
  • 31
2

On Mac and Android Studio 2.3.3 try this :

Ctrl + CMD + f

piet.t
  • 11,718
  • 21
  • 43
  • 52
Victor Ruiz.
  • 1,706
  • 22
  • 22
1

The best way to do this is with a keyboard macro which combines Hide All Tool Windows with Toggle Full Screen mode.

First you need to assign keyboard short cuts to both these under Settings -> Keymap (Toggle Full Screen mode does not have one, but Hide All Tool Windows is Ctrl + Shift + F12 on my version of Android Studio).

Then record a macro under _Edit -> Macros -> Start Macro Recording_. Name it as something then assign a keymap to it under _Settings -> Keymap_.

Now with just one shortcut you can maximize your code area :)

Agilanbu
  • 2,747
  • 2
  • 28
  • 33
timothyjc
  • 2,188
  • 3
  • 29
  • 54
0

Alt + V (will access Menu -> View) => Arrow Up => Enter

Example : Alt + V (will access Menu -> View) --> Arrow Up ^ --> Press Enter key

Agilanbu
  • 2,747
  • 2
  • 28
  • 33
Anson Davis
  • 37
  • 10
0

Kind of offtopic: In Openbox ToggleFullscreen works for every single application, so for Android Studio as well.

Just add:

<keybind key="W-f">
<action name="ToggleFullscreen"/>
</keybind>

to your

~/.config/openbox/rc.xml

Where W is Windows/Mac button on your keyboard.

sZpak
  • 247
  • 10
0

I found out best way for me was to go to Keymap ctrl + alt + s and make a little control area to keyboard for me:

  • Hide All Tool Windows ctrl + alt + i
  • Toggle Full Screen mode ctrl + alt + o
  • Toggle Distraction Free mode ctrl + alt + p
Agilanbu
  • 2,747
  • 2
  • 28
  • 33
ZMastah
  • 1
  • 2