Android Studio
Google's official Android development environment supporting innovative app development with emulator, profiler, and layout editor
Shortcuts that improve Android code quality with refactoring features like renaming, comment toggling, and code structuring
Shift+F6
Rename
Refactors the name of the symbol at caret.
💡 Hint: Rename
🎯 Safely refactor variable and method names with automatic updates to all reference locations
Ctrl+Alt+T
Surround With
Surrounds the selection with code constructs (e.g., try/catch).
💡 Hint: Tag
🎯 Surround selected code with try-catch or if statements to efficiently improve code structure
Ctrl+/
Toggle Line Comment
Toggles line comment on/off for current line or selection.
💡 Hint: / = Comment
🎯 Instantly toggle line comments on/off for efficient code documentation and temporary disabling
Ctrl+Shift+/
Toggle Block Comment
Toggles block comment on/off around the selection.
💡 Hint: Block
🎯 Surround multiple lines with block comments for temporary disabling of large code sections
F11
Toggle Bookmark
Toggles a bookmark on the current line.
💡 Hint: Bookmark
🎯 Set bookmarks on important lines for efficient code review and later reference
Shift+F11
Show Bookmarks
Displays a list of all bookmarks.
💡 Hint: Bookmark list
🎯 Display list of set bookmarks for quick navigation to marked locations