我正在开发一个应用程序,我想在其中显示以前设置的警报视图。从这段代码中,我们可以检查警报是否处于活动状态。但是我们怎样才能得到时间
boolean alarmUp = (PendingIntent.getBroadcast(context, 0,
new Intent("com.in.pack.MY_UNIQUE_ACTION"),
PendingIntent.FLAG_NO_CREATE) != null);
if (alarmUp)
{
Log.d("Tag", "Alarm is active");
}