不操千曲而后晓声,观千剑而后识器。这篇文章主要讲述android 创建通知栏Notification相关的知识,希望能为你提供帮助。
///// 第一步:获取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);
【android 创建通知栏Notification】更复杂的功能能够查询相关api文档。
推荐阅读
- 频繁被询问的apply和call
- 从零開始学android<mediaplayer自带播放器(视频播放).四十九.>
- Android开发 - 下拉刷新和分段头悬停列表
- Android中自己定义checkbox样式
- Xcode真机调试报错(The application could not be verified.)
- 移动端WEBAPP开发遇到的坑,以及填坑方案!持续更新~~~~
- cordova构建和运行应用程序(安卓)
- 安卓EditText中姓名为空时提醒报错
- Android 关于ToolBar分分钟玩死自己()