Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What do different icons and symbols in Android Studio's Structure sidebar mean?

When I click on 'Structure' sidebar in Android Studio, it displays the contents of the current class. However there are certain icons & symbols used to indicate different members, e.g., a circle with letter m for methods, etc. Where do I get the complete list and the details for all the icons & symbols? (something like a legend/key that explains the various icons & symbols is what I'm looking for)

Thanks!

like image 413
omsrisagar Avatar asked May 30 '15 01:05

omsrisagar


1 Answers

Follow the link below and you will get your answer about different icons and symbols in Android Studio's Structure sidebar: https://developer.android.com/tools/studio/index.html http://www.jetbrains.com/idea/help/symbols.html

Edited:

Static class initializer means >>> class object creation with class name and its properties. Show_Something_Fragment means >> FragmentView helps to showcustom view i.e. foe example if a Fragment is inside its main activity then it helps to show the view of the fragment layout. Outbound_changed_event means >> different attributes taken for an event.

Hope now your doubts are clear.......

like image 65
SID --- Choke_de_Code Avatar answered Oct 04 '22 03:10

SID --- Choke_de_Code