tags:

views:

22

answers:

1

Say that a user clicks on a Button. Is the resulting onClick() function invoked on the main UI thread of the activity?

+1  A: 

Yes it is. And then you launch your crazy networking stuff in a background thread.

alex