这是一个代码:
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this,
"AppLock007")
.setSmallIcon(R.drawable.ic_lock)
.setColor(Color.TRANSPARENT)
.setContentTitle("App Lock")
.setContentText("Securing your apps")
.setOngoing(true)
.setContentIntent(pendingIntent);
Notification notification = notificationBuilder.build();
是否有解决方案代码可以创建上图中的通知?