Skip to content Skip to sidebar Skip to footer

Android: Open Activity When Alarm Clock Is Done Or Dismmised

Every alarm clock that the user set through the phone stock clock has an option of opening another application when the alarm is dismissed or done (I'm not sure if this feature is

Solution 1:

So it seems that there's no option to add your app to the desired list which allow the user to pick an application to open immediately after the alarm has been dismissed or done.

My other solution is to listen to that specific event of dismissing or done through broadcast receiver. This might be a bit tricky because the event has multiple names according to the device.

I have LG phone so my event is com.lge.clock.alarmalert.stop, but you'll have to figure out whats the event for each device. I've seen some similar topics as this one.

Here's my manifest declaration for the receiver:

<receiverandroid:name=".Receiver.AlarmBroadcastReceiver"><intent-filter><actionandroid:name="com.android.deskclock.ALARM_DISMISS" /><actionandroid:name="com.android.deskclock.ALARM_DONE" /><actionandroid:name="com.lge.clock.alarmalert.stop" /></intent-filter></receiver>

The deskclock is the default stock clock running on some devices, as I mentioned, I had to find the action for the LG phones and added it aswell.

The Receiver:

@Override
publicvoidonReceive(Context context, Intent intent) {
    String action = intent.getAction();
    if (action.equals("com.android.deskclock.ALARM_DISMISS") || action.equals("com.android.deskclock.ALARM_DONE") || action.equals("com.lge.clock.alarmalert.stop"))
    {
        ////Do Something
    }
}

Post a Comment for "Android: Open Activity When Alarm Clock Is Done Or Dismmised"