如何实现Android的消息的通知栏

社区服务
高级搜索
猴岛论坛电脑百科如何实现Android的消息的通知栏
发帖 回复
倒序阅读 最近浏览的帖子最近浏览的版块
2个回复

[资源分享]如何实现Android的消息的通知栏

楼层直达
小克9634f

ZxID:58004769

等级: 下士
举报 只看楼主 使用道具 楼主   发表于: 2015-04-24 0
   如何要使通知消息,必须要用到两个类:NotificationManager和Notification,其他NotificationManager的初始化是用getSystemService方法,并且通过notify方法来向android系统发送消息栏通知和显示。


  效果:


  代码:


  //消息通知栏


  //定义NotificationManager


  String ns = Context.NOTIFICATION_SERVICE;


  NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);


  //定义通知栏展现的内容信息


  int icon = R.drawable.icon;


  CharSequence tickerText = "我的通知栏标题";


  long when = System.currentTimeMillis();


  Notification notification = new Notification(icon, tickerText, when);


  //定义下拉通知栏时要展现的内容信息


  Context context = getApplicationContext();


  CharSequence contentTitle = "我的通知栏标展开标题";


  CharSequence contentText = "我的通知栏展开详细内容";


  Intent notificationIntent = new Intent(this, BootStartDemo.class);


  PendingIntent contentIntent = PendingIntent.getActivity(this, 0,notificationIntent, 0);


  notification.setLatestEventInfo(context, contentTitle, contentText,contentIntent);


  //用mNotificationManager的notify方法通知用户生成标题栏消息通知


  mNotificationManager.notify(1, notification);


  三星gt s7568刷机 sxgts7568sj.sanxingsj.cn
西湖网络

ZxID:21246521

等级: 中校
举报 只看该作者 沙发   发表于: 2015-04-24 0
来学习了啊
猴岛、守护`|

ZxID:20936045

等级: 大将

举报 只看该作者 板凳   发表于: 2015-04-25 0
这个还可以
« 返回列表
发帖 回复