omsrisagar
omsrisagar

Reputation: 487

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!

Upvotes: 6

Views: 8268

Answers (1)

SID --- Choke_de_Code
SID --- Choke_de_Code

Reputation: 1141

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.......

Upvotes: 4

Related Questions