1

In Visual Studio when you open a CLASS or something it gives you the chance to just select from a DROPDOWN menu to quickly jump down to a specific method inside the class.

I know in Eclipse they have the OUTLINE window on the right hand side that shows up sometimes also that gives a more generic way of doing this.

What about Android Studio? How would I go about doing something like this?

eqiz
  • 1,521
  • 5
  • 29
  • 51
  • possible duplicate of [IntelliJ shortcut to show a popup of methods in a class that can be searched](http://stackoverflow.com/questions/3990289/intellij-shortcut-to-show-a-popup-of-methods-in-a-class-that-can-be-searched) – Sam Dozor Feb 02 '15 at 15:26
  • cmd+F12 opens the file structure – njzk2 Feb 02 '15 at 15:30

3 Answers3

3

In Android Studio you can use for this purpose Structure Window (Alt+7)

Denys Vasylenko
  • 2,135
  • 18
  • 20
2

You have following options to jump to a specific method or jump between methods in Android Studio:

  1. Alt + 7: This will open Structure Window where you can find all methods.
  2. Ctrl + F12: This will open a dialog, similar to Structure Window, where you can find all methods. Also it has filter option. Start typing method name and it will filter out methods.
  3. Alt + Up/Down: Using this you can jump between methods.
Chintan Shah
  • 1,744
  • 2
  • 26
  • 28
2

Mac: Ctrl + Up/Down but I had to disable the default shortcuts for Mission Control and Application windows in System Preferences > Keyboard > Shortcuts > Mission Control

davisjp
  • 730
  • 1
  • 11
  • 24