restart - Android Restarting the Application -
i trying restart app when crash occurs in android using thread.uncaughtexceptionhandler. can restart app current activity stack new process?? if yes how can it?
one method override onpause method in activity kill app. this:
public class myactivity extends activity { @override public void onpause() { finish(); }
Comments
Post a Comment