android在特定时间,在特定时间发送给用户的通知Android
发布日期:2021-06-24 17:58:21 浏览次数:2 分类:技术文章

本文共 1552 字,大约阅读时间需要 5 分钟。

我正在尝试使用报警管理器在特定时间向用户发送通知.基本上,什么也没有发生,对我来说代码看起来不错.我的Alarm Manager的代码如下:

/** Notify the user when they have a task */

public void notifyAtTime() {

Intent myIntent = new Intent(PlanActivity.this,Notification.class);

AlarmManager alarmManager = (AlarmManager)getSystemService(ALARM_SERVICE);

PendingIntent pendingIntent = PendingIntent.getService(PlanActivity.this,myIntent,0);

Calendar calendar = Calendar.getInstance();

calendar.set(Calendar.HOUR_OF_DAY,12);

calendar.set(Calendar.MINUTE,17);

calendar.set(Calendar.SECOND,00);

alarmManager.setRepeating(AlarmManager.RTC_WAKEUP,calendar.getTimeInMillis(),24*60*60*1000,pendingIntent);

}

“通知”类中的通知代码如下:

public class Notification extends Service {

@Override

public void onCreate() {

Toast.makeText(this,"Notification",Toast.LENGTH_LONG).show();

Intent intent = new Intent(this,PlanActivity.class);

PendingIntent pending = PendingIntent.getActivity(this,intent,0);

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(

this).setSmallIcon(R.drawable.ic_launcher)

.setContentTitle("Football")

.setContentText("Don't forget that you have Football planned!")

.setContentIntent(pending);

NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

manager.notify(0,mBuilder.build());

}

@Override

public IBinder onBind(Intent intent) {

// TODO Auto-generated method stub

return null;

}

}

在Notification类中设置的Toast也不会出现.我不知道这是真的很傻,我失踪了,但任何帮助将不胜感激!

总结

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。

小编个人微信号 jb51ccc

喜欢与人分享编程技术与工作经验,欢迎加入编程之家官方交流群!

转载地址:https://blog.csdn.net/weixin_34237700/article/details/117485892 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:android exported 权限,Exported activity does not require permission
下一篇:鸿蒙手表开发连不到图片,上手做一个华为鸿蒙手表应用 3 - 两页面互相跳转

发表评论

最新留言

不错!
[***.144.177.141]2024年04月26日 16时04分57秒