============================================ Android Studio keyboard shortcuts (filtered) ============================================ First published at 10/8/2017 on https://defkey.com/android-studio-shortcuts Android Studio is a integrated development environment (IDE) for the Android operating system. It's licensed with Apache and can be freely downloaded and used. General ------- Ctrl + S Save all Ctrl + Alt + Y Synchronize Ctrl + Shift + F12 Maximize/minimize editor Alt + Shift + I Inspect current file with current profile Ctrl + ` (backquote) Quick switch scheme Ctrl + Tab Switch between tabs and tool window Navigating and searching ------------------------ Press Shift twice Search everything (including code and menus). Ctrl + Shift + N Find file (instead of class) Alt + Left arrow / Right arrow Navigate between open editor tabs Ctrl + Alt + H Open call hierarchy Writing code ------------ Alt + Insert Generate code (getters, setters, constructors, hashCode/equals, toString, new file, new class) Ctrl + Alt + T Surround with (if...else / try...catch / etc.) Ctrl + D Duplicate current line or selection Ctrl + Space Basic code completion Ctrl + Shift + Enter Complete statement Ctrl + P Show parameters for selected method Ctrl + Shift + I Open quick definition lookup Ctrl + / Comment/uncomment with line comment Ctrl + Shift + / Comment/uncomment with block comment Ctrl + Alt + O Optimize imports Alt + Enter Project quick fix (show intention actions and quick fixes) Last modified on (UTC): Thursday, December 26, 2019 Defkey © All rights reserved.