android - Understanding a DDMS Log -
Can someone please explain the understanding of Lockat from the Android Force shutdown.
This accident occurs when
thanks
The exception is SuperNotCalledException
. This happens when, in different callbacks, you do not chain upwards in Superclass. onPause ()
is one of those callbacks.
Therefore, if your looks like onPause ()
:
@ override public wide on pause () {finish}; }
that this will increase the exception. It should look like this:
Prevent Public Zero on @Override () {super.onPause (); End(); }
Comments
Post a Comment