Does anybody know how to modify the style of the "force close" window (FC dialog)? I found a custom ROM with a nice picture at the dialog. At what place can I find the popup?
Try to override uncaughtException,
@Override
public void uncaughtException(Thread thread, Throwable e) {
e.printStackTrace();
try {
// create your custom dialog
displayErrorMessageToast();
Thread.sleep(3500);
} catch (Exception e1) {
Log.e(TAG, "Error: ", e1);
}
finally
{
killApplicationProcess(e);
}
}
for more info: https://groups.google.com/forum/?fromgroups=#!topic/android-developers/2iUH1Knz8gw
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With