Reputation: 318
I would like to know if it is possible to edit the dialog which is displayed when an android application has crashed. I want to edit the whole message "'ApplicationName' has stopped"
Upvotes: 0
Views: 59
Reputation: 4725
You cannot do that. Better design and test your applications properly and make sure that there are no uncaught exceptions. The force close dialog appears when things go bad in your application. You have no way to control it.
Upvotes: 1