0

How can i see an inherited methods at Android Studio? Maybe, Android Studio has some shortcats for this?

I want to see all inherited methods of class and override it, if necessary.

Admiral Land
  • 2,304
  • 7
  • 43
  • 81

2 Answers2

2

ctrl + o will give you all the methods that you can override in a class.

Dania
  • 1,648
  • 4
  • 31
  • 57
0

You can achieve that by this shortcut: "Alt+Insert" and pick "Overrides methods". You will see all overrides methods. enter image description here

gasmyr
  • 11
  • 1
  • 4