I'd like develop an Alarm Application. The application should work like this:

  • launch it
  • the activity show me the time
  • I can set the alarm
  • I can close the application
  • when the alarm time comes , it starts an activity (even if the device is lock)

I have tried to adapt this sample https://github.com/commonsguy/cwac-wakeful but I cannot launch an activity when the alarm time comes.

I use this code to setup the alarm (for test I have inserted this code on an onCreate method of activity):

Intent intent = new Intent(this, OnAlarmReceiver.class);
    PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 0,
            intent, 0);

    Calendar cal = Calendar.getInstance();
    cal.add(Calendar.SECOND, 10);

    AlarmManager alarm = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
    alarm.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, cal.getTimeInMillis(),
            pendingIntent);

this is the OnAlarmReceiver class:

public class OnAlarmReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        Log.i(ClockActivity.LOG_TAG, "OnAlarmReceiver::onReceive");
        WakefulIntentService.sendWakefulWork(context, AlarmService.class);
    }

}

this is the sevice class:

public class AlarmService extends WakefulIntentService {

    public AlarmService(String name) {
        super(name);
    }

    @Override
    protected void doWakefulWork(Intent intent) {
        Log.i(ClockActivity.LOG_TAG, "AlarmService::doWakefulWork");

        Intent newIntent = new Intent(getApplicationContext(), ClockActivity.class);
        newIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        newIntent.setAction(ClockActivity.ALARM_ACTION);
        getApplicationContext().startActivity(newIntent);

    }

}

this is the portion of Manifest where are setup the service and the receiver:

    <receiver android:name=".OnAlarmReceiver"></receiver>
    <service android:name=".AlarmService"></service>

the doWakefulWork method is never called!

link|improve this question
4  
Post your code, preferably where you try to launch your activity, and also report any errors that your getting...that'll help us help you. – st0le Dec 19 '10 at 7:46
does it work when the screen is on? I'm just trying to find out if the issue relates to the wake lock – Andrew May 9 at 9:00
feedback

3 Answers

One simple question: Did you set the permission to acquire WakeLocks in your Manifest?

Log.i(ClockActivity.LOG_TAG, "OnAlarmReceiver::onReceive");

Gets called, right?

link|improve this answer
feedback

I had a similar problem and I resolved removing the receiver from manifest and set in my code registering him with registerReceiver.

link|improve this answer
feedback

check this out : http://blog.nelsondev.net/?p=124

using"alarmmanager"

 alarmManager.setRepeating(AlarmManager.RTC_WAKEUP,
    AlarmCal.getTimeInMillis(), AlarmManager.INTERVAL_FIFTEEN_MINUTES,
    pendingAlarmIntent);

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.