android中创建通知栏Notification代码实例_安卓软件开发教程-查字典教程网
android中创建通知栏Notification代码实例
android中创建通知栏Notification代码实例
发布时间:2016-12-28 来源:查字典编辑
摘要://///第一步:获取NotificationManagerNotificationManagernm=(NotificationManag...

///// 第一步:获取NotificationManager NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); ///// 第二步:定义Notification Intent intent = new Intent(this, OtherActivity.class); //PendingIntent是待执行的Intent PendingIntent pi = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT); Notification notification = new Notification.Builder(this) .setContentTitle("title") .setContentText("text") .setSmallIcon(R.drawable.ic_launcher).setContentIntent(pi) .build(); notification.flags = Notification.FLAG_NO_CLEAR; /////第三步:启动通知栏,第一个参数是一个通知的唯一标识 nm.notify(0, notification); //关闭通知 //nm.cancel(0);

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新安卓软件开发学习
    热门安卓软件开发学习
    编程开发子分类