var mNotification = new Notification.Builder(main);
// var pending = plus.android.importClass("android.app.PendingIntent");
// var intent = plus.android.importClass("android.content.Intent");
//mNotification.setOngoing(true);
mNotification.setContentTitle(title); //标题
mNotification.setContentText(content); //内容
mNotification.setSmallIcon(17301620); //图标
mNotification.setTicker("我的通知"); //通知首次出现在通知栏时的效果
mNotification.setNumber(5); //通知集合的数量
mNotification.setDefaults(Noti.DEFAULT_VIBRATE); //声音、闪灯、震动效果,可叠加
mNotification.setPriority(Noti.PRIORITY_DEFAULT);
mNotification.flags= Notification.FLAG_SHOW_LIGHTS;
我这样设置,为什么提示信息没有呼吸灯,而且提示窗的小图标是Hbuild默认的图标,不是我设置的应用的图标
有哪位大神指点一下
0 个回复