On Sun, Oct 3, 2010 at 5:04 AM, Amit <[email protected]> wrote:

> IllegalThreadStateException: Thread already started. at java.lang.Thread
> (Thread.java: 1284)
>

Read the docs for Thread.start(), specifically the part about what it
throws:
*IllegalThreadStateException* if the Thread has been started before.

So, as the docs and exception state, you're getting this error because
you're calling start() a second time on the same thread. That's not allowed.
Create a new thread.

-------------------------------------------------------------------------------------------------
TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago
transit tracking app for Android-powered devices

-- 
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

Reply via email to