Reputation: 11944
I want to fetch data from server and refresh UI when data is fetched in Android.
What should I use? an AsyncTask or a Service or something else?
Upvotes: 2
Views: 2479
Reputation: 5985
You can use the Async task and a method which sets the contentview (layout) of your screen. After the data has been fetched from the server, you can again refresh the screen by calling the method in postexecute() of Asynctask.
Upvotes: 12