Is it possible to create some sort of global exception handler in Android?

后端 未结 2 747
渐次进展
渐次进展 2021-01-15 02:07

My application includes a series of Activities, through which the user must proceed in a linear fashion. Let\'s say that this series of activities looks like this: A (repres

2条回答
  •  无人及你
    2021-01-15 02:25

        Thread.setDefaultUncaughtExceptionHandler(new DefaultExceptionHandler()... );
    

提交回复
热议问题