xml网站开发工具,外贸数据分析网站,专门做前端项目的一些网站,股票配资网站建设我正在尝试启动前台服务.我收到通知,该服务确实启动但通知始终被抑制.我仔细检查了应用是否允许在我的设备上的应用信息中显示通知.这是我的代码#xff1a;private void showNotification() {Intent notificationIntent new Intent(this, MainActivity.class);notificationI…我正在尝试启动前台服务.我收到通知,该服务确实启动但通知始终被抑制.我仔细检查了应用是否允许在我的设备上的应用信息中显示通知.这是我的代码private void showNotification() {Intent notificationIntent new Intent(this, MainActivity.class);notificationIntent.setAction(Constants.ACTION.MAIN_ACTION);notificationIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK| Intent.FLAG_ACTIVITY_CLEAR_TASK);PendingIntent pendingIntent PendingIntent.getActivity(this, 0,notificationIntent, 0);Bitmap icon BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher);Notification notification new NotificationCompat.Builder(getApplicationContext()).setContentTitle(Revel Is Running).setTicker(Revel Is Running).setContentText(Click to stop).setSmallIcon(R.mipmap.ic_launcher)//.setLargeIcon(Bitmap.createScaledBitmap(icon, 128, 128, false)).setContentIntent(pendingIntent).setOngoing(true).build();startForeground(Constants.FOREGROUND_SERVICE,notification);Log.e(TAG,notification shown);}这是我在关系中看到的唯一错误06-20 122643.635 895-930 / E / NotificationService按用户请求抑制来自包的通知.