NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
        Notification notification 
= new Notification(R.drawable.icon, "您有新消息了", System.currentTimeMillis());
        PendingIntent contentIntent 
= PendingIntent.getActivity(this0, getIntent(), 0);
        notification.setLatestEventInfo(
this"天气预报""晴转多云", contentIntent);
        notificationManager.notify(R.drawable.icon, notification);

相关文章: