check and pull data from server continuously in Android Application
问题 I want to load data from server synchronously and show it in a view like ListView or TextView without any pulling request each time. I need the data will be loaded if there is any changes in server. Right now I am using asynctask to pull data from server but to load new data or update I need to do pulling request using a reload button. I tried it using a thread which will run after a certain time. But I know there might have some better method obviously. How can I do the same thing without