如何更改VPN服务通知标题和说明android

时间:2019-05-02 12:42:10

标签: android service push-notification android-service android-notifications

是否有机会更改VpnService前台通知(标题和描述)。我尝试了不同的方法,但没有任何效果,并且始终显示相同的默认标题和说明-> enter image description here

这是我无法使用的代码:

   Notification notification = new NotificationCompat.Builder(this, "999")
            .setSmallIcon(R.drawable.shutdown_icon)
            .setContentTitle("VPN is activated by net security")
            .setPriority(NotificationCompat.PRIORITY_DEFAULT).build();

    startForeground(333, notification);

如果可能的话,我只需要将文本“已连接到.... VPN”更改为“ VPN由网络安全性激活”。

0 个答案:

没有答案