adag wrote: > Hello, > > I have 5 screen in which I am encountering "Stop Application" error > which makes my application to stop. Here I know that an exception > which supposed to be addressed inside the code on which the error is > occurring. The Stop Application System Message is forcing the next 3 > screen to close until it reaches to the 1st screen of the application. > > Is there any scope(or the way by handling) that I can stop that system > message not to occur onto the next screen of any uncontrolled such > error.
The "system message" will occur when your code crashes. If the "system message" is appearing four times, then your code is crashing four times. Use adb logcat, DDMS, or the DDMS perspective in Eclipse to fix the bug. Then, the "system message" will go away. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android App Developer Books: http://commonsware.com/books -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

