Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio: where is the function list? [closed]

Tags:

java

android

How to see the function list in Android Studio? like eclipse does.

Googled already, but didn't find any useful answer.

EDIT:

function list, means the list of functions of the current file.

nana's answer is exactly what I want, thx!

like image 511
Swing Avatar asked May 28 '15 03:05

Swing


People also ask

Which method is called when app is closed?

The general rule is that either onDestroy() is called, or your process is terminated, or your code crashed.

Where is the main function in Android Studio?

The main() method is in the Android framework class android. app. ActivityThread . This method creates the Main (UI) Thread , sets up a Looper on it and starts the event loop.

How do you delete lists on Android?

Call clear() method from your custom adapter . clean() is not available with BaseAdapter. you can also set the listview adapter to null.


1 Answers

On the left hand side (towards the top or bottom) click on Structure.

See here

If you don't see the tabs click on the button all the way in the bottom left corner:

Toggle the tabs

like image 92
nana Avatar answered Sep 22 '22 23:09

nana