On Tue, Aug 24, 2010 at 3:24 PM, cindy <[email protected]> wrote: > If I get a result from setResult from other activities, I need to set the > result to a textview. Do I still need to call runOnUIThread() ? >
If you're talking about onActivityResult, no. In general, pretty much any Activity function you override is going to be run on the UI thread. You have to worry about runOnUIThread when you're doing your own threading (like having a worker thread process some data and update a view when it's done). ------------------------------------------------------------------------------------------------- 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

