30 Android Studio Keyboard Shortcuts

When an engineer uses Android Studio shortcuts, they have the power to bend the environment to their will. This is the first rule I learned when I started programming. The key to improving efficiency with Android Studio is to avoid using the mouse as much as possible.

Given the list of Android Studio shortcut keys below, you should be able to navigate through the entire IDE. Download the Android Studio shortcut keys in PDF format.

Most Used Android Studio Shortcuts

ActionAndroid Studio Shortcut Keys
CopyCtrl + C
PasteCtrl + V
CutCtrl + X
OpenCtrl + O
SaveCtrl + S
FindCtrl + F
Find & ReplaceCtrl + H
Go to fileCtrl + Shift + N
Navigate open tabsAlt + Left Arrow key
Lookup recent filesCtrl + E
Go to lineCtrl + G
Navigate to the last edit locationCtrl + Shift + Backspace
Go to declarationCtrl + B
Go to ImplementationCtrl + Alt + B
Go to SourceF4
Go to Super ClassCtrl + U
Show Call hierarchyCtrl + Alt + H
Search in path or projectCtrl + Shift + F
Reformat codeCtrl + Alt + L
Optimize importsCtrl + Alt + O
Code CompletionCtrl + Spacebar
Issue quick fixAlt + Enter
Surround code blockCtrl + Alt + T
Rename and refactorShift + F6
Line Comment or UncommentCtrl + /
Block Comment or UncommentCtrl + Shift + /
Go to the previous methodAlt + Page Up key
Go to the next methodAlt + Page Down key
Show parameters for the methodCtrl + P
Quick documentation lookupCtrl + Q
Delete lineCtrl + Y
Safe DeleteAlt + Delete
Close Active TabCtrl + F4
Build and runShift + F10
BuildCtrl + F9
All-purpose ShortcutCtrl + Shift + A

So, this was a list of the most useful Android Studio shortcut keys. It has helped me improve my productivity manifold. Using these Android Studio shortcut keys when programming and refactoring can make a difference in time saved and drastically increase productivity. A detailed list of Visual Studio shortcuts is also available for you to learn as an alternative to Android Studio.

READ NEXT:

Back to top button