[android-developers] Re: Grabbing System Exception Android

2009-11-14 Thread westmeadboy
On Oct 1, 2:18 am, fadden wrote: > If you're trying to do this when an activity is created: have a static > "has been initialized" member variable; if it's false, get the current > default uncaught exception handler and save it away.  Set yours.  When > your handler is called, do the processing, a

[android-developers] Re: Grabbing System Exception Android

2009-09-30 Thread fadden
On Sep 30, 8:13 am, Matteo wrote: > > Are you referring to Thread#setDefaultUncaughtExceptionHandler()? > If i launch "n" Activities i'll always have the same thread , in this > scenario i will need to call setDefaultUncaughtExceptionHandler only > once per application right ? It's global to a

[android-developers] Re: Grabbing System Exception Android

2009-09-30 Thread Matteo
On 30 Set, 16:14, "Mark Murphy" wrote: > > i'm andrea from androidiani.com, i'm working on a library that will > > help developers about managing unexpected exceptions. > > > The library is quite simple on it's idea, but i can't grab the > > unexpected exception withouth the use of a "global" t

[android-developers] Re: Grabbing System Exception Android

2009-09-30 Thread Mark Murphy
> i'm andrea from androidiani.com, i'm working on a library that will > help developers about managing unexpected exceptions. > > The library is quite simple on it's idea, but i can't grab the > unexpected exception withouth the use of a "global" try catch > clausole. > > I saw the instrumentation