Im attempting to build a method in an android application that will cause an activity to refresh every 3 minutes, similar to what you see in a twitter or facebook type app where the application will refresh the newsfeed on its own every few minutes, however I am unable to find any tutorials on the web that give me an idea as to how this is done, any help would go a long way thanks!
Share
You’ll want to create an asynchronous update task that runs in the background and fires off either your update method, or just straight relaunches the activity via an intent every 3 minutes. Something like: