How to search method in a file in Android Studio
In Eclipse there is the command Ctrl+O to search a method in a file. What is shortcut for the same command in Android Studio?
Found these solution more better:
http://mussharapp.blogspot.in/2013/07/android-studio-keyboard-shortcut.html
http://www.techrepublic.com/article/four-handy-android-studio-shortcuts-for-eclipse-users/
Solution 1:
Windows : CTRL + F12
Mac : cmd + F12
- And type the name it will show the list.
Solution 2:
You can search by method name or symbol name using CTRL + ALT + SHIFT + N on Windows & OPTION + CMD + O on Mac. This will search throughout the project.
Additionally, you can use CTRL + F12 on Windows and CMD + Fn + F12 on Mac to search in the current class.
Check http://developer.android.com/sdk/installing/studio-tips.html for more shortcuts.
Also, you can edit shortcuts in Preferences -> Keymap
.
Solution 3:
Press Opt + Cmd + O to search symbols on Mac.