In my application when anywhere one force close is coming after that a sequence of force close starts.When i click on “Ok” for first force close then second force close comes . This is coming in 4-5 times.
This is only a situation where multiple force close comes at same time.I search at various places , but cant find the solution of this problem.I just want to know its reason.Code and logcat is changes every time.Anywhere in my app when force close starts its comes 4-5 times one after one.The reason of Force close is different in each time.
Exception is different too. but result is always a sequence of force close.
Where can be problem in this . Kindly suggest me.
In my application when anywhere one force close is coming after that a sequence
Share
The reason for that is that if an Activity throws an exception, Android tries to reload your previous Activity in the stack with the current state. However, it seems that it also throws an exception and so on several levels. You just need to ensure in such situations that you will not propagate the errors along the Activity stack.