java - Kill app whenever it goes to background -
i creating app. mainactivity -> fragment -> see details activity.
it working fine.
but when going background on see details activity, still running.
why activity or app not getting destroyed. want kill app whenever go background.
add this:
@override public void onpause() { super.onpause(); // call superclass method first finish(); }
Comments
Post a Comment