Issue
I've just moved from Eclipse to android studio. One of my most used shortcut is ctrl-2 L, which will automatically assign a variable with a name and import the necessary class.
new View();
and press Ctrl-2 L, which results in:
View view = new View();
Is there a way to do it in android studio?
Solution
You Can See Shortcut Key in Refactor -> Extract Menu
Mac Extract Variable Use Below Shortcut:
1- ⌥+⌘+V for local variable
2- ⌥+⌘+F for class/field variable
3- ⌥+⌘+C for constant
I think you must use Control+Alt key for Windows
Answered By - Ahmad Ronagh
Answer Checked By - Pedro (JavaFixing Volunteer)