Skip to content Skip to sidebar Skip to footer

Error The Application Stopped When Press Mobile Logout Button

I have Android app which play sound and when I want to log off from the app as when press on mobile logout button i have the error message ' the application stopped ...' . @Overri

Solution 1:

It throws a SuperNotCalledException in onStop() which means you did not called super.onStop():

@OverridepublicvoidonStop(){
  super.onStop(); // must be called.
}

Every method from the activity lify cycle, such as onCreate(), onResume(), onStart(), etc, should call the super methods.

Post a Comment for "Error The Application Stopped When Press Mobile Logout Button"