最善の解決策は、静的データを使用する代わりに、データを使用Shared Preferences
または保存し、Database
何かuncaught Exception
が発生した場合は、次のようなメッセージを表示しApplication has crashed and a report is sent to the admin
て、クラッシュの原因となったアクティビティを再起動することです。このようにして、ユーザーはアプリケーションを引き続き使用できます。
同じことを行いますが、例外の原因となったアクティビティを再起動する代わりに、アプリケーションを再起動します。
処理に使用するクラスを作成するunCaughtException
public class MyExceptionHandler implements
java.lang.Thread.UncaughtExceptionHandler {
private final Context myContext;
private final Class<?> myActivityClass;
public MyExceptionHandler(Context context, Class<?> c) {
myContext = context;
myActivityClass = c;
}
public void uncaughtException(Thread thread, Throwable exception) {
StringWriter stackTrace = new StringWriter();
exception.printStackTrace(new PrintWriter(stackTrace));
System.err.println(stackTrace);// You can use LogCat too
Intent intent = new Intent(myContext, myActivityClass);
String s = stackTrace.toString();
//you can use this String to know what caused the exception and in which Activity
intent.putExtra("uncaughtException",
"Exception is: " + stackTrace.toString());
intent.putExtra("stacktrace", s);
myContext.startActivity(intent);
//for restarting the Activity
Process.killProcess(Process.myPid());
System.exit(0);
}
}
すべてのアクティビティで、このクラスのオブジェクトを作成し、それをDefaultUncaughtExceptionHandler
Thread.setDefaultUncaughtExceptionHandler(new MyExceptionHandler(this,
YourCurrentActivity.class));