Android Studio Keyboard Shortcut for full screen mode
Asked Answered
M

8

34

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?

Maurreen answered 7/5, 2015 at 5:38 Comment(3)
i am looking for a keyboard shortcutMaurreen
You can make your own. Look developer.android.com/sdk/installing/studio-tips.htmlBernete
You can define on File > Settings > Keymap. Look at the gif in my answer.Iredale
B
41

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.

Buckels answered 7/5, 2015 at 5:54 Comment(1)
In the Mac version (2.2.3) it IS mapped by default to control + command + F to enter/exit full screen mode.Maelstrom
C
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 :)

Commute answered 9/12, 2015 at 6:19 Comment(0)
I
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

Iredale answered 17/11, 2017 at 11:32 Comment(0)
R
2

On Mac and Android Studio 2.3.3 try this :

Ctrl + CMD + f

Romie answered 5/8, 2017 at 23:57 Comment(1)
this full screens the entire project window. how about just the current tab?Frumpish
B
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 :)

Barchan answered 20/4, 2016 at 18:24 Comment(1)
Thanks for mentioning the name "Hide All Tool Windows". I wanted to change it to ctrl+MMainsheet
O
0

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

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

Overflight answered 8/4, 2017 at 4:17 Comment(0)
G
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.

Greenness answered 27/9, 2017 at 10:32 Comment(0)
R
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
Reconnoitre answered 2/9, 2018 at 16:19 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.