PendingIntentreturns getShowIntent()to AlarmManager.AlarmClockInfo :
public PendingIntent getShowIntent() {
return mShowIntent;
}
and used in the StatusBarHeaderViewonClick() method :
PendingIntent showIntent = mNextAlarm.getShowIntent();
if (showIntent != null && showIntent.isActivity()) {
mActivityStarter.startActivity(showIntent.getIntent(), true );
}
, , PendingIntent, - / , :
