On Wed, Jan 9, 2013 at 9:26 AM, bob <[email protected]> wrote: > Can anyone tell me if the listener gets called on the UI thread or not?
Pretty much everything in Android works on the main UI thread, especially GUI-related functionality, unless otherwise specified. You can also verify this for yourself by putting a breakpoint in the touch listener and seeing which thread is calling it in the Debug view in Eclipse. ------------------------------------------------------------------------------------------------- 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

