Re: [android-developers] A thread has a RuntimeException in run() method

2012-07-14 Thread TreKing
On Fri, Jul 13, 2012 at 2:21 PM, michael s wrote: > If the method doSomething(), throws a Runtime Exception and I don't catch > it in my run() method, will that crashes my whole application? Try it.

[android-developers] A thread has a RuntimeException in run() method

2012-07-14 Thread michael s
In my android, if I create a thread new Runnable() { public void run() { doSomething(); } } If the method doSomething(), throws a Runtime Exception and I don't catch it in my run() method, will that crashes my whole application? Thank you. -- You received this message because