是否有机会更改VpnService前台通知(标题和描述)。我尝试了不同的方法,但没有任何效果,并且始终显示相同的默认标题和说明->
这是我无法使用的代码:
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由网络安全性激活”。