Android崩溃后重启


Thread.UncaughtExceptionHandler 接口并复写uncaughtException(Thread thread, Throwable ex)方法来实现对运行时线程进行异常处理。在Android中我们可以实现自己的Application类,然后实现 UncaughtExceptionHandler接口,并在uncaughtException方法中处理异常,这里我们关闭App并启动我们需要的Activity,下面看代码:

ps:MainActivity为应用的启动Activity

 
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
public class MyApplication  extends Application  implements 
         Thread.UncaughtExceptionHandler { 
     @Override 
     public void onCreate() { 
         super .onCreate(); 
         //设置Thread Exception Handler 
         Thread.setDefaultUncaughtExceptionHandler( this ); 
    
   
     @Override 
     public void uncaughtException(Thread thread, Throwable ex) { 
        
        //设置此处的MainActivity为启动Activity
         Intent intent =  new Intent( this , MainActivity. class ); 
         intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | 
         Intent.FLAG_ACTIVITY_NEW_TASK); 
         startActivity(intent); 
        System.exit(0); 
    
       
}
最后需要在Manifest中配置Application的标签android:name=".MyApplication",让整个应用程序使用我们自定义的Application类,这样就实现了当应用遇到崩溃异常时重启应用的效果。

我们在任意一个Activity中主动抛出下面异常,就会发现应用遇到异常后重启了,如果不处理的话,应用在遇到异常后就关闭了。


你可能感兴趣的:(android)