簡體   English   中英

為什么我的通知在 Android > 7 上不起作用?

[英]Why my notification not working on Android > 7?

我的通知需要幫助。 這在 Android > 7 上不起作用。我每天上午 10 點使用廣播接收器重復我的通知我希望我的通知在 Android 上從 19 到最大 29 有效。這可能嗎? 請問有什么幫助嗎?

接收者 :

public class AlarmReceiverNewUser extends BroadcastReceiver {

    public void onReceive(Context context, Intent intent) {
        String userName = App.SP().getString(App.SHARED_PREFERENCES_USER_NAME, "");
        final String textes[] = {context.getResources().getString(R.string.textNotification1), context.getResources().getString(R.string.textNotification2),
                context.getResources().getString(R.string.textNotification3), context.getResources().getString(R.string.textNotification4),
                context.getResources().getString(R.string.textNotification5), context.getResources().getString(R.string.textNotification6),
                context.getResources().getString(R.string.textNotification7)};
        int idx = new Random().nextInt(textes.length);

        NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
        Intent intent1 = new Intent(context, FreeCalmBreathActivity.class);
        intent1.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

        Uri alarmSound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
        PendingIntent pendingIntentSecond = PendingIntent.getActivity(context, 42, intent1, PendingIntent.FLAG_UPDATE_CURRENT);

        NotificationCompat.Builder builder = new NotificationCompat.Builder(context). //Enlever issou si ça bug
                setSmallIcon(R.drawable.ic_logo).
                setContentIntent(pendingIntentSecond).
                setContentText(userName + (textes[idx])).setStyle(new NotificationCompat.BigTextStyle()
                .bigText(userName + (textes[idx]))).
                addAction(R.drawable.ic_check_black_24dp, App.getContext().getResources().getString(R.string.Access), pendingIntentSecond).
                setContentTitle(App.getContext().getResources().getString(R.string.app_name)).
                setSound(alarmSound).
                setNumber(7).
                setChannelId(String.valueOf(42)).
                setAutoCancel(true);
        notificationManager.notify(42, builder.build());
        setNotification(context, 42);
    }

    private void setNotification(Context context, int id) {
        Calendar calender = Calendar.getInstance();
        calender.set(Calendar.HOUR_OF_DAY, 10);
        calender.set(Calendar.MINUTE, 0);
        calender.set(Calendar.SECOND, 0);

        Intent intent = new Intent(context, AlarmReceiverNewUser.class);
        intent.putExtra("NotificationId", id);
        PendingIntent pendingIntent = PendingIntent.getBroadcast(context, id, intent, PendingIntent.FLAG_UPDATE_CURRENT);
        AlarmManager alarmManager = (AlarmManager) context.getSystemService(ALARM_SERVICE);
        alarmManager.setExact(AlarmManager.RTC_WAKEUP, calender.getTimeInMillis() +
                AlarmManager.INTERVAL_DAY, pendingIntent);
    }
}

您需要使用 Notification Builder 創建一個頻道以在 Android O 中發送通知

NotificationManager mNotificationManager =(NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
 mNotificationManager.createNotificationChannel(mChannel);

或者您可以通過檢查 android 版本發送通知

NotificationManager mNotificationManager =
            (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
       mNotificationManager.createNotificationChannel(mChannel);
    }

或者您也可以設置頻道ID

NotificationChannel mChannel = new NotificationChannel(CHANNEL_ID, Name, Importance);
// Create a notification and set the notification channel.
Notification notification = new Notification.Builder(MainActivity.this)
            .setContentTitle("")
            .setContentText("")
            .setChannelId(CHANNEL_ID)
            .build();

有關更多詳細信息,您可以查看官方 Android 文檔

您需要創建通知頻道才能在 N+ 中查看通知

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM