Android通知代码

来源:互联网 发布:银行证券软件下载 编辑:程序博客网 时间:2024/05/19 23:23
public void notice() {String ns = Context.NOTIFICATION_SERVICE;NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);Context context = getApplicationContext();Intent notificationIntent = new Intent(this, MainActivity.class);PendingIntent contentIntent = PendingIntent.getActivity(this, 0,notificationIntent, 0);Uri alert = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);Notification notification = new NotificationCompat// 注意:4.4.2版本使用的方法.Builder(context) //上下文.setAutoCancel(true) //自动取消.setContentTitle("title") //标题.setContentText("describe") //描述.setContentIntent(contentIntent)//通知动作.setSmallIcon(R.drawable.ic_launcher)//图标.setWhen(System.currentTimeMillis())//时间.setSound(alert)//声音.build();//建立通知mNotificationManager.notify(1, notification);}

0 0
原创粉丝点击