Reputation: 1784
Can anyone give me some suggestion or link of all controls of Android Studio keyboard shortcuts?
Upvotes: 77
Views: 72523
Reputation: 1
file-> setting ->Editor ->Intensions- dart -->Just check Quick assists powered by dart
Upvotes: -1
Reputation: 7478
Android Studio > Preferences > Keymap > Select Your Option.
Default is: IntelliJ IDEA Classic
After Android Studio updating, you sometimes need to do that. For example, I updated Android Studio 4.2.1 and I did this because it turned automatically default Keymap which is IntelliJ IDEA Classic. I prefer to use MacOS.
Upvotes: 2
Reputation: 15615
I may be late to answer this, but would like to help all others who come up to this page from now.
Here is the list of all the most productive shortcuts that I have been using regularly in my day to day Android development. It saves a lot of time, seriously.
Upvotes: 10
Reputation: 729
if you have a favourite plugin that doesn't have a shortcut, just navigate to
Settings > KeyMap > Double click Plugins > Select desired plugin > Add
Keyboard Shortcut :: Then press down the hot keys you want to assign for the
plugin and click OK.
PS. be careful not to override any important AS shortcut.
Upvotes: 0
Reputation: 21766
Here is the official list of the shortcuts of Android Studio for Windows, Linux and Mac:
https://developer.android.com/studio/intro/keyboard-shortcuts.html#configure_custom_keymaps
Upvotes: 0
Reputation: 22945
to assign a keyboard shortcut, you need to navigate to
file --> setting --> keymap --> search and than right click and add keyboard shortcut --> in first stroke
you can add/change like
ex:
you want to assign Cntl + w than use Cntl with w
Upvotes: 4
Reputation: 12530
Move to File
-> Settings
-> Keymap
and change Keymaps
settings to eclipse so that you can use the short cut keys like in eclipse.
Upvotes: 154
Reputation: 80010
Preferences > Keymap will show you all the keyboard bindings.
A couple helpful hints to help you find features:
You can search actions by name; on MacOS the keybinding is Command+Shift+A. You can start typing the name of a command and it will show you all matching commands and their key bindings if they have one. That's really convenient for looking up the key shortcut for something if you have a hint of what it's called.
In most dialogs/windows there's a search box, and you can usually just start typing to start a search. It's especially good for preferences, where there are so many options that are hard to find.
Upvotes: 11
Reputation: 25816
Go to Help and select Default Keymap Reference will point you to one of these default keyboard shortcuts for Android Studio. It has all the keyboard shortcuts you can do in Android Studio. It's says for it's IntelliJIDEA but Android Studio is based off IntelliJIDEA, so all the keyboard shortcuts listed there apply in Android Studio.
Upvotes: 0