Android 8通知未显示,ActivityThread引发RemoteServiceException

时间:2019-03-05 11:19:35

标签: android notifications

在开发人员控制台中,向我显示此错误仅在Android 8上存在,并且在Xperia设备上经常出现。此错误与应用程序在设备/ Android版本上的分布不匹配。 。 目前,我不知道该如何处理。 Maybee与某些特殊情况或设备和Android 8的组合有关。2 这是我的主要代码,用于显示通知PS(已尝试SVG / PNG /所有尺寸)相同的问题

@Override
public void onCreate() {
    super.onCreate();

    api = AFClientService.newBuilder(this)
            .setCarrierId("*****")
            .setHostUrl("********************")
            .setVPNNotificationProvider(new VPNNotificationProvider() {
                // NOTE: this method will be called from VPN process, reference to MainApplication will be different
                @Override
                public Notification createVPNNotification(String message, String ticker, boolean b, long l, VpnStatus.ConnectionStatus connectionStatus) {
                    return new NotificationCompat.Builder(getApplicationContext(), "*****")
                            .setContentText(message)
                            .setTicker(ticker)
                            .setContentTitle("**********")
                            .setSmallIcon(R.drawable.ic_notification)
                            .build();
                }
            })
            .build();
}
public AFClientService getApi() {
    return api;
}

0 个答案:

没有答案