手机
当前位置:查字典教程网 >编程开发 >安卓软件开发 >android中创建通知栏Notification代码实例
android中创建通知栏Notification代码实例
摘要://///第一步:获取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);

【android中创建通知栏Notification代码实例】相关文章:

android广播接收者实例

android中的按两次返回键退出代码

Android界面 NotificationManager使用Bitmap做图标

Android中利用App实现消息推送机制的代码

Android中vim编辑器进阶的使用介绍

控制Android LED灯颜色的代码实例

Android双击退出Activity的类代码

android二级listview列表实现代码

android notification 的总结分析

Android键盘显示与隐藏代码

精品推荐
分类导航