When NOT to call super() method when overriding?
问题 When I make my own Android custom class, I extend its native class. Then when I want to override the base method, I always call super() method, just like I always do in onCreate , onStop , etc. And I thought this is it, as from the very beginning Android team advised us to always call super on every method override. But, in many books I can see that developers, more experienced than myself, often omit calling super and I really doubt they do it as a lack of knowledge. For example, look at