Я пытаюсь показать созданное мной уведомление, а не firebase.Работает на старых телефонах, а не на Oreo - PullRequest
0 голосов
/ 22 мая 2018

Это код, который пытается создать уведомление:

NotificationManager notifManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
notifManager.cancelAll();

PSTrip activeTrip = getActiveTrip();

Intent intent = new Intent(context, PSNewJourneyActivity.class);
intent.putExtra("id", activeTrip.getId());
intent.putExtra("userid", activeTrip.getOwner().getId() + "");
intent.putExtra("mode", "active");
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK);

playCheckoutSound(context, false);

int iUniqueId = (int) (System.currentTimeMillis() & 0xfffffff);
PendingIntent pIntent = PendingIntent.getActivity(context, iUniqueId, intent, PendingIntent.FLAG_UPDATE_CURRENT);

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context, "general");
mBuilder.setContentTitle(context.getString(R.string.passenger_name)).setContentText(context.getString(R.string.pit, "name")).setSmallIcon(R.drawable.notification_icon);
mBuilder.setContentIntent(pIntent);

Notification notification = mBuilder.build();
notification.flags |= Notification.FLAG_AUTO_CANCEL;

NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(iUniqueId, notification);

, как вы можете видеть, я выбираю идентификатор канала и выбираю уникальный идентификатор для уведомления, но все же, не повезло.Что я здесь не так делаю?Также я попытался вызвать это в Looper.getMainLooper, не знаю, что должно повлиять на это, но все же не повезло.

PS: мое приложение имеет службу переднего плана, поэтому оно имеет постоянное уведомление, чтобы позволитьпользователь знает, что мое приложение работает в фоновом режиме.Это то, что вызывает проблему?

РЕДАКТИРОВАТЬ:

Я добавил это до .notify, нашел в ответе:

 if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
                    NotificationChannel notificationChannel = notificationManager.getNotificationChannel(channelId);
                    if (notificationChannel == null) {
                        int importance = NotificationManager.IMPORTANCE_HIGH;
                        notificationChannel = new NotificationChannel(channelId, channelDescription, importance);
                        notificationChannel.setLightColor(Color.GREEN);
                        notificationChannel.enableVibration(true);
                        notificationManager.createNotificationChannel(notificationChannel);
                    }
                }

Мой телефон вибрирует, но уведомлениепо-прежнему не отображается.

SDK Версия:

 compileSdkVersion 27
buildToolsVersion '27.0.3'
defaultConfig {
    minSdkVersion 17
    targetSdkVersion 27
}

Телефон: Huawei Mate 10 Pro.Android 8.0

Logcat выдает мне эту проблему:

05-22 12:34:32.916: E/NotificationService(1184): No Channel found for pkg=nl.hgrams.passenger, channelId=general, id=124397682, tag=null, opPkg=nl.hgrams.passenger, callingUid=10233, userId=0, incomingUserId=0, notificationUid=10233, notification=Notification(channel=general pri=0 contentView=null vibrate=null sound=null defaults=0x0 flags=0x10 color=0x00000000 vis=PRIVATE)

1 Ответ

0 голосов
/ 22 мая 2018

Если ваше приложение предназначено для Android 8.0, вы должны указать канал уведомлений.

NotificationChannel notificationChannel = new NotificationChannel(CHANNEL_ONE_ID,
    CHANNEL_ONE_NAME, 
    notifManager.IMPORTANCE_HIGH);
notificationChannel.enableLights(true);
notificationChannel.setLightColor(Color.RED);
notificationChannel.setShowBadge(true);
notificationChannel.setLockscreenVisibility(Notification.VISIBILITY_PUBLIC);
getManager().createNotificationChannel(notificationChannel);

Проверьте эту ссылку для создания канала.

https://www.androidauthority.com/android-8-0-oreo-app-implementing-notification-channels-801097/

...