我希望在我的应用程序崩溃或停止工作时显示我自己的消息。或者当应用程序崩溃时,应该显示任何其他活动。在此期间,意向应被称为
链路
请参阅以上链接。
使用默认未捕获异常处理程序
Public class YOURAPPLICATION extends Application
{
public void onCreate ()
{
// Setup handler for uncaught exceptions.
Thread.setDefaultUncaughtExceptionHandler (new Thread.UncaughtExceptionHandler()
{
@Override
public void uncaughtException (Thread thread, Throwable e)
{
handleUncaughtException (thread, e);
}
});
}
public void handleUncaughtException (Thread thread, Throwable e)
{
//CREATE YOUR ACTIVITY HERE.
}