http://blog.csdn.net/guolin_blog/article/details/50945228  郭神的博客

final NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
NotificationCompat.Builder builder = new NotificationCompat.Builder(this);
final Notification notification = builder.setContentTitle("这是通知标题").setContentText("这是通知的内容").
setWhen(System.currentTimeMillis()).setSmallIcon(R.mipmap.ic_launcher).setLargeIcon(BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher))
.setColor(Color.parseColor("#EAA935")).build(); final Notification notification2 = builder.setContentTitle("这是通知标题2").setContentText("这是通知的内容2").
setWhen(System.currentTimeMillis()).setSmallIcon(R.mipmap.ic_launcher).setLargeIcon(BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher))
.build(); btn_notification = (Button) findViewById(R.id.btn_notification);
btn_notification2 = (Button) findViewById(R.id.btn2); btn_notification.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
manager.notify(1, notification);
}
}); btn_notification2.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
manager.notify(2, notification2);
}
});

最新文章

  1. 第十二章:使用FP-growth算法进行关联分析
  2. Android中Handler 、Thread和Runnable之间的关系
  3. ae
  4. Openvpn 公网访问内网
  5. python异步爬虫
  6. error adding symbols: DSO missing from command line collect2: error: ld returned 1 exit status
  7. ARM汇编中的标号
  8. UVa 11375 - Matches
  9. RBStoryboardLink库的使用注意事项 -转载至--坤哥MartinLi博客
  10. [terry笔记]RMAN综合学习之恢复
  11. 网络服务器带宽Mbps、Mb/s、MB/s有什么区别?10M、100M到底是什么概念?
  12. C++ 中 int,char*,string,CString之间相互转换-整理
  13. 页面动态加载js文件
  14. 【转】谈Objective-c block的实现
  15. 副本机制与副本同步------《Designing Data-Intensive Applications》读书笔记6
  16. PHPmysqli的 其他函数 从数据库中读出数据并且打印出来
  17. 你真的了解String吗?(修正版)
  18. ESP8266产品ID
  19. 【python】面向对象编程
  20. centos7 yum安装ffmpeg,以及ffmpeg的简单用法

热门文章

  1. CSS3_边框属性之圆角
  2. EI中国
  3. 在linux上搭建本地yum源
  4. Windows不重启就使环境变量修改生效
  5. Nemo Documents – 给文件添加标签 以日历的形式将文件呈现出来,很像 Outlook,你可以根据年、月、日来查看不同类型的文档
  6. linux笔记:linux常用命令-文件处理命令
  7. WebContentGenerator
  8. ubuntu14 eclipse luna 无法显示菜单 , 解决方案
  9. Oracle “dba_tables”介绍
  10. BZOJ1736 [Usaco2005 jan]The Wedding Juicer 婚宴的榨汁机