[android-developers] Re: Activity's Thread ID

2010-04-26 Thread MobDev
ok, I have done that but the result now is that I always get the same Thread ID, I guess that's the main UI Thread.. I do have different threads, for example for http connections (or actually Runnable's), and now I'd like to get their Thread ID as well, any idea how ? So I'd like to get the Thread

[android-developers] Re: Activity's Thread ID

2010-03-22 Thread Streets Of Boston
All callbacks into an Activity happen on the same thread, the main UI thread. Just call, in onCreate, the method 'Thread.currentThread().getId()' On Mar 22, 10:04 am, MobDev developm...@mobilaria.com wrote: Hi, I'd like to retrieve the Thread Priority of one or more Activity's... To do so I