Harinder
Harinder

Reputation: 11944

Fetch data from server and refresh UI when data is fetched?

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

Answers (1)

Jaydeep Khamar
Jaydeep Khamar

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

Related Questions