Reputation: 81
Eg:- I want to go through the methods which are in ListActivity class. In Eclipse when we right click the particular class then in some options we can see all the methods of that class. How can I do this in Android studio?
Upvotes: 5
Views: 6737
Reputation: 593
Click on "Structure" on the left pane and you will find all the methods listed
Upvotes: 3
Reputation: 1435
First You have to set your keymap as Eclipse in Android Studio. For this go to
Now you can press CTRL+Shift+R
and type ListActivity
to directly open that class. there you will find all the available methods
Another way to see the methods is to
generate
Upvotes: 1
Reputation: 6459
In the Project view, you will see something labeled "Structure". If you hit there, you will see all the methods in a given class.
Upvotes: 16