Introduction

We all know how to develop good applications by using Android Studio and we are pretty happy with what we are doing. But what if those things could be done with less effort? We all are habituated to using a mouse in our day-to-day life but sometimes knowingly or unknowingly it will increase our effort as well as development time.
Today we will see some basic shortcuts of Android Studio which will be used in day-to-day life. Most of the time we use the mouse to select a whole line or sometimes we select those things by using SHIFT + Arrow keys and then deleting that line, but in Android Studio CMD + Y(CTRL + Y) will delete the current line. Here are some Android Studio shortcuts which will help you to be more productive.
It will automatically apply your coding style and format it. However, you can edit your coding style from settings from File > Settings > Editor > Code Style(For Mac Android Studio > Preferences > Editor > Code Style)
It allows you to search any item of the source code, database, actions, elements of the user interface, etc.
It allows you to move to declaration of class, method, or variable.
Allows you to see a list of all the classes implementing the selected class. It works with method also to find where they are implemented.
It allows you to rename any file/class. It will rename all the copies of file/class/variable.
It will allow you to wrap your code with some structure. It can be if statement, loop, try-catch block etc.
It will allow you to do contextual selection -- it will select the current variable, then the statement, then the method etc.
This article was originally posted on my blog.