How can I know what override events a controls has?
First of all I have search Google and android api for this thing but not successful.
If I further elaborate my question I would give an example of Visual studio C# in which If I drag a control and I can view all properties and events of this control and if double click on any event it automatically write that event for me. Now if I look for documentation I can find these http://developer.android.com/guide/topics/ui/ui-events.html
Also If I have any shortcut key for implement events of any control. If I can do this in eclipse that will also helpful.
Thanks
For Mac, you can try ctrl + O
to get a list of methods that can be overridden, or cmd + F12
x2 to get a list of inherited members.
https://www.jetbrains.com/idea/docs/IntelliJIDEA_ReferenceCard_Mac.pdf https://www.jetbrains.com/idea/docs/IntelliJIDEA_ReferenceCard.pdf
Search for Override methods
and File structure popup
in these documents.