On May 25, 4:49 am, redmapleleaf <[email protected]> wrote: > I was expecting that all the threads should have different tid but > they are all of the same. Also it seems that they don't have the low > priority from my main activity as my GUI freeze every time the thread > start receiving data or start to process the data for speaking.
The thread ID shown by e.g. "logcat -v threadtime" or "ps -t" is accurate. If you're seeing the same TID in all your log messages, it's because you're executing code in a single thread. The GUI freezes are likely because you're doing the processing in the GUI thread itself. -- 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

