Reputation: 4037
If i want to call a function of a remote service from within the UI thread.. how do i do it?
Upvotes: 0
Views: 292
Reputation: 2235
You can use AsyncTask to call a remote service. This performs background operations and publish results on the UI thread without having to manipulate threads .
Upvotes: 1