显示小通知,例如仅应用锁定或标题部分

时间:2019-02-28 09:52:41

标签: android

我正在尝试发出this之类的通知。为此尝试了不同的代码。

这是一个代码:

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();

是否有解决方案代码可以创建上图中的通知?

0 个答案:

没有答案