Is it possible to create some sort of global exception handler in Android?
问题 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 (represents the main menu), B, C, D, E. The user proceeds like this: A -> B -> C -> D -> E. In each of these activities, the user must either input data or allow the device to get the data automatically (e.g. via the network or Bluetooth). Occasionally, my app crashes in one of the middle activities. What ends up happening,