Last active
January 28, 2022 02:40
-
-
Save arriolac/7742342 to your computer and use it in GitHub Desktop.
Some Android Studio Tricks.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Android Studio Notes | |
| =========================== | |
| ## Keyboard Shortcuts | |
| * `SHIFT + F6` to refactor methods, classes, and variable names | |
| * `CTRL + O` to override methods | |
| * `COMMAND + N` | |
| * Generate getter, setter, and constructor method for a class (when in editor pane) | |
| * Generate new class, files, package, etc. (when in project pane) | |
| * `CTRL+ALT+O` to auto-import | |
| * `OPTION + COMMAND + L` to reformat code | |
| * `CMD+B` opens the layout file from a .java file | |
| * `CTRL+SHIFT+SPACE` to see documentation |
& what for Ubuntu ?
nice thanks
For windows??
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice! thanks.