Skip to main content

Posts

Showing posts with the label Timer Task

Timer task using service

Timer task using service in android // To run a  task for a specific time in background using service in android // Example program for to display a toast message for every one minute(exactly 1 minute) //Use service in android, then only it runs in background. public class MyService extends Service {             private static Timer timer = new Timer();                       @Override             public IBinder onBind(Intent intent)            {                     // TODO Auto-generated method stub                     return null;           ...