I was wondering if it's possible (and if it is how) to start up my app at a specific time, something like an alarmclock which goes off at a specific time. Let's say I want my app to start up at 8 in the morning, is that feasable ?

link|improve this question

32% accept rate
feedback

4 Answers

you are probably looking for AlarmManager, which let's you start services / activities / send broadcasts at specific intervals or a given time, repeating or not. this is how you write memory friendly background services in android. AlarmManager is sort of like cron in unix. it allows your background service to start, do its work, and get out of memory.

you probably do not want to start an activity (if that's what you meant by "application"). if you want to alert the user that something has happened, add an alarm that starts a receiver at a given time, and have the receiver add a notification. the notification can open the application when clicked. that's less invasive than brunging some potentially unwanted activity to the foreground.

link|improve this answer
actually I do want to run my main activity :D I do understand your approach is less invasive but I also want to do something invasive :P – TiGer Dec 16 '10 at 7:11
feedback

You can do it with AlarmManager, heres a short example. First you need to set the alarm:

        AlarmManager am = (AlarmManager) con
            .getSystemService(Context.ALARM_SERVICE);

    Date futureDate = new Date(new Date().getTime() + 86400000);


    futureDate.setHours(8);
    futureDate.setMinutes(0);
    futureDate.setSeconds(0);


    Intent intent = new Intent(con, MyAppReciever.class);

    PendingIntent sender = PendingIntent.getBroadcast(con, 0, intent,
            PendingIntent.FLAG_UPDATE_CURRENT);

Next You need to create a reciever with some code to execute(ie- starting your app):

public class MyAppRecieverextends BroadcastReceiver {

@Override
public void onReceive(Context context, Intent intent) {

    startActivity(new Intent(context, MyApp.class));
}

}

link|improve this answer
feedback

Many alarm clock programs (such as Alarm Clock Plus) include the ability to start a program at a particular time, if you wanted to let another program do the heavy lifting for you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.