android 消息通知

来源:互联网 发布:弱电箱网络模块modem 编辑:程序博客网 时间:2024/05/22 00:34
 
NotificationManager objNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);int icon = R.drawable.icon;CharSequence tickerText = "小图标旁的文字";Notification objNotification = new Notification(icon, tickerText,System.currentTimeMillis());// 如果有振动或者全部提示方式,必须在 AndroidManifest.xml 加入振动权限PendingIntent objPendingIntent = PendingIntent.getActivity(this, 0,new Intent(this, PlayerActivity.class), 0);objNotification.setLatestEventInfo(this, "通知栏的标题", "通知栏的内容",objPendingIntent);// 添加入通知管理器中objNotificationManager.notify(0, objNotification);

原创粉丝点击