Search code examples
androidiconsscreenalarmlocked

How to show alarm icon with hour on locked screen and in notification bar


I am wondering how is it possible to display stock alarm icon near clock and alarm icon together with hour on locked screen (same as you would use stock alarm).


Solution

  • Try this.

    Intent alarmChanged = new Intent("android.intent.action.ALARM_CHANGED");
    alarmChanged.putExtra("alarmSet", true/*false if you want to hide it*/);
    context.sendBroadcast(alarmChanged);