android个人视频学习笔记(三)

    public void testNotification(View view){
        //获取通知管理类,从上下文对象中进行获取
        NotificationManager manager
                = (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE);
        // 创建notification内容
        NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
                .setContentTitle("消息标题 ABC")
                .setContentText("请接收这个通知")
                .setTicker("推送消息!来消息啦。。。")
                .setSmallIcon(android.R.drawable.sym_def_app_icon);
        Notification notification = builder.build();
        manager.notify(1,notification);
//        manager.notify(id,notification); 添加一个通知
//        manager.cancel(id); 取消一个通知 
    }

你可能感兴趣的:(android个人视频学习笔记(三))