Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is Eclipse Ctrl+O shortcut equivalent in Android Studio?

I tried finding a method in a class using Ctrl+O. But that doesn't work. I was wondering how do we find a method in a class.

like image 270
Sahil Jain Avatar asked Jan 04 '15 14:01

Sahil Jain


People also ask

What is Ctrl K in eclipse?

In Eclipse, if the cursor is over a word and you press Ctrl + K you will jump to the next occurrence of that word in the file.

How do you Ctrl h in eclipse?

Ctrl + H = "Type Hierarchy" view = shows a tree of parent and child classes of this class. Ctrl + Shift + A = "It does a search as you type through all the commands in intellij. Not only that but when you find the command you want it also displays the corresponding shortcut key next to it!"

How do I redo in Android Studio?

It is simple and default: ( CTRL + Z ) This is for undo. Just press ( CTRL + SHIFT + Z ) for redo.


1 Answers

The equivalent shortcut in IntelliJ based IDEs is CTRL + F12.

You can also use CTRL+ALT+SHIFT+N or SHIFT+SHIFT to navigate to symbols (like methods).

like image 136
Bohuslav Burghardt Avatar answered Sep 29 '22 11:09

Bohuslav Burghardt