ओरियो में नहीं दिखा अधिसूचना


183

सामान्य अधिसूचना बिल्डर Android O पर सूचनाएँ नहीं दिखाता है।

मैं एंड्रॉइड 8 ओरेओ पर अधिसूचना कैसे दिखा सकता हूं?

क्या Android O पर सूचना दिखाने के लिए कोई नया कोड जोड़ना है?


3
मैं ".setChannelId" को NotificationCompat.Builder पर सेट करना भूल गया। अब यह oreo (8.0) में काम कर रहा है
varotariya vajsi

जाँच करें कि क्या यह freakyjolly.com/android-useful-methods-and-functions/#3method
Code Spy

जवाबों:


264

Android O में अपने Notification Builder के साथ चैनल का उपयोग करना आवश्यक है

नीचे एक नमूना कोड है:

// Sets an ID for the notification, so it can be updated.
int notifyID = 1; 
String CHANNEL_ID = "my_channel_01";// The id of the channel. 
CharSequence name = getString(R.string.channel_name);// The user-visible name of the channel.
int importance = NotificationManager.IMPORTANCE_HIGH;
NotificationChannel mChannel = new NotificationChannel(CHANNEL_ID, name, importance);
// Create a notification and set the notification channel.
Notification notification = new Notification.Builder(MainActivity.this)
            .setContentTitle("New Message")
            .setContentText("You've received new messages.")
            .setSmallIcon(R.drawable.ic_notify_status)
            .setChannelId(CHANNEL_ID)
            .build();

या हैंडलिंग संगतता के साथ:

NotificationCompat notification =
        new NotificationCompat.Builder(this)
        .setSmallIcon(R.drawable.notification_icon)
        .setContentTitle("My notification")
        .setContentText("Hello World!")
        .setChannelId(CHANNEL_ID).build();



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

// Issue the notification.
mNotificationManager.notify(notifyID , notification);

या यदि आप एक साधारण फिक्स चाहते हैं तो निम्न कोड का उपयोग करें:

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

अपडेट: अधिसूचना

NotificationCompat.Builder(Context context)

इस कंस्ट्रक्टर को एपीआई स्तर 26.0.0 में पदावनत किया गया था, इसलिए आपको इसका उपयोग करना चाहिए

Builder(Context context, String channelId)

इसलिए setChannelIdनए कंस्ट्रक्टर के साथ कोई ज़रूरत नहीं है ।

और आपको वर्तमान में 26.0.2 AppCompat लाइब्रेरी के नवीनतम का उपयोग करना चाहिए

compile "com.android.support:appcompat-v7:26.0.+"

Youtube पर Android डेवलपर्स चैनल से स्रोत

इसके अलावा, आप आधिकारिक Android डॉक्स की जांच कर सकते हैं


4
उपयोग करने से पहले आपको एक चैनल भी बनाना होगा। देखें developer.android.com/reference/android/app/...
Guillaume Perrot

2
setChannel sethannelId के पक्ष में पदावनत किया गया है
Guillaume Perrot

1
यदि आपको जीवन भर ऐप इंस्टॉल करने में कम से कम एक बार चैनल नहीं बनाने पर कोई त्रुटि नहीं मिलती है।
गिलियूम पेरोट

1
@ ग्लैन्यूव जाहिर है कि मेरे पास गलत चैनल का नाम था। अब यह काम कर रहा है। धन्यवाद, लेकिन आपका उत्तर पूर्ण नहीं है ... आपको mNotificationManager.createNotificationChannel (mChannel) का उपयोग करके पहले एक चैनल बनाना होगा; (मैंने अपने एप्लिकेशन वर्ग में ऐसा किया है) ... इसके लिए Google डॉक्स देखें। शायद इसे अपने उत्तर में जोड़ें।
जेपीएम

2
नए NotificationCompat.Builder(Context, String)निर्माणकर्ता को प्राप्त करने के लिए मुझे किन निर्भरताओं / संस्करणों को लक्षित करना चाहिए ? मैं (अन्य बातों के अलावा) का उपयोग कर रहा हूँ: - compileSdkVersion 26- buildToolsVersion '26.0.2'- compile 'com.android.support:appcompat-v7:26.0.0-beta2' और फिर भी यह अभी भी मेरे रचनाकार को एक संदर्भ और स्ट्रिंग का उपयोग करके स्वीकार नहीं कर रहा है। कोई विचार?
लोइसैदा सैम सैंडबर्ग

91

यहाँ मैं इरादे से निपटने के साथ कुछ त्वरित समाधान समारोह पोस्ट

public void showNotification(Context context, String title, String body, Intent intent) {
    NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);

    int notificationId = 1;
    String channelId = "channel-01";
    String channelName = "Channel Name";
    int importance = NotificationManager.IMPORTANCE_HIGH;

    if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
        NotificationChannel mChannel = new NotificationChannel(
                channelId, channelName, importance);
        notificationManager.createNotificationChannel(mChannel);
    }

    NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context, channelId)
            .setSmallIcon(R.mipmap.ic_launcher)
            .setContentTitle(title)
            .setContentText(body);

    TaskStackBuilder stackBuilder = TaskStackBuilder.create(context);
    stackBuilder.addNextIntent(intent);
    PendingIntent resultPendingIntent = stackBuilder.getPendingIntent(
            0,
            PendingIntent.FLAG_UPDATE_CURRENT
    );
    mBuilder.setContentIntent(resultPendingIntent);

    notificationManager.notify(notificationId, mBuilder.build());
}

मुझे भी। केवल एक जिसने एफसीएम और एंड्रॉइड के लिए 4 मुझे काम किया> = 8.
यिंगयांग

1
त्वरित और सरल
alfian5229

बहुत बहुत धन्यवाद। मैंने सूचनाओं को प्रदर्शित न करने के कारण समस्या निवारण में घंटों बिताए। तो अगर आप सिर्फ एक पॉप अप चाहते हैं, तो बस सुनिश्चित करें कि आपने Android Oreo + के लिए NotificationManager का उपयोग करके NotificationChannel बनाया है।
जोक्सन

यह कोड लागू करना और समझना सबसे आसान है, यहां तक ​​कि 2019 की तारीख तक भी है। धन्यवाद।
प्रदीप धवन

Android में notificationManager.notify और startForeground के बीच क्या अंतर है?
14:10 पर user1090751

76

इस उत्तर के अलावा , आपको उपयोग करने से पहले अधिसूचना चैनल बनाने की आवश्यकता है।

  if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {

      /* Create or update. */
      NotificationChannel channel = new NotificationChannel("my_channel_01",
          "Channel human readable title", 
          NotificationManager.IMPORTANCE_DEFAULT);
      mNotificationManager.createNotificationChannel(channel);
  }

इसके अलावा, आपको केवल तभी चैनल का उपयोग करने की आवश्यकता है, जब आपका targetSdkVersion 26 या अधिक हो।

यदि आप NotificationCompat.Builder का उपयोग कर रहे हैं, तो आपको समर्थन लाइब्रेरी के बीटा संस्करण को भी अपडेट करना होगा: https://developer.android.com/topic/lbooks/support-library/revisions.html#26-0-0- Beta2 ( setChannelIdकॉम्पिटिटर बिल्डर पर कॉल करने में सक्षम होने के लिए )।

सावधान रहें क्योंकि यह लाइब्रेरी अपडेट minSdkLevel को 14 तक बढ़ाता है।


यदि मिनि आपी 26 से कम है तो यह चेतावनी बढ़ाएगा। चेतावनी भेजने के लिए चैनल बनाने से ठीक पहले @TargetApi (26) जोड़ें।
एस-शिकारी

यदि आपके पास अगर कोड सैंपल की तरह ही है तो यह चेतावनी नहीं देगा, क्विक फिक्स के अलग-अलग सुझाव हैं, उनमें से एक है अगर कोड की जाँच करके कोड को घेर लिया जाए। यदि आप संस्करण संस्करण की जाँच करते हैं, तो एंड्रॉइड स्टूडियो हालांकि भ्रमित हो सकता है और इसका पता नहीं लगा सकता है।
गिलोय पेरोट

11
public class MyFirebaseMessagingServices extends FirebaseMessagingService {
    private NotificationChannel mChannel;
    private NotificationManager notifManager;
    @Override
    public void onMessageReceived(RemoteMessage remoteMessage) {
        if (remoteMessage.getData().size() > 0) {
            try {
                JSONObject jsonObject = new JSONObject(remoteMessage.getData());
                displayCustomNotificationForOrders(jsonObject.getString("title"), jsonObject.getString("description"));
            } catch (JSONException e) {
                e.printStackTrace();
            }
        }
    }

    private void displayCustomNotificationForOrders(String title, String description) {
        if (notifManager == null) {
            notifManager = (NotificationManager) getSystemService
                    (Context.NOTIFICATION_SERVICE);
        }
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            NotificationCompat.Builder builder;
            Intent intent = new Intent(this, Dashboard.class);
            intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
            PendingIntent pendingIntent;
            int importance = NotificationManager.IMPORTANCE_HIGH;
            if (mChannel == null) {
                mChannel = new NotificationChannel
                        ("0", title, importance);
                mChannel.setDescription(description);
                mChannel.enableVibration(true);
                notifManager.createNotificationChannel(mChannel);
            }
            builder = new NotificationCompat.Builder(this, "0");

            intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP |
                    Intent.FLAG_ACTIVITY_SINGLE_TOP);
            pendingIntent = PendingIntent.getActivity(this, 1251, intent, PendingIntent.FLAG_ONE_SHOT);
            builder.setContentTitle(title)  
                    .setSmallIcon(getNotificationIcon()) // required
                    .setContentText(description)  // required
                    .setDefaults(Notification.DEFAULT_ALL)
                    .setAutoCancel(true)
                    .setLargeIcon(BitmapFactory.decodeResource
                            (getResources(), R.mipmap.logo))
                    .setBadgeIconType(R.mipmap.logo)
                    .setContentIntent(pendingIntent)
                    .setSound(RingtoneManager.getDefaultUri
                            (RingtoneManager.TYPE_NOTIFICATION));
            Notification notification = builder.build();
            notifManager.notify(0, notification);
        } else {

            Intent intent = new Intent(this, Dashboard.class);
            intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
            PendingIntent pendingIntent = null;

            pendingIntent = PendingIntent.getActivity(this, 1251, intent, PendingIntent.FLAG_ONE_SHOT);

            Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
            NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
                    .setContentTitle(title)
                    .setContentText(description)
                    .setAutoCancel(true)
                    .setColor(ContextCompat.getColor(getBaseContext(), R.color.colorPrimary))
                    .setSound(defaultSoundUri)
                    .setSmallIcon(getNotificationIcon())
                    .setContentIntent(pendingIntent)
                    .setStyle(new NotificationCompat.BigTextStyle().setBigContentTitle(title).bigText(description));

            NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
            notificationManager.notify(1251, notificationBuilder.build());
        }
    }

    private int getNotificationIcon() {
        boolean useWhiteIcon = (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP);
        return useWhiteIcon ? R.mipmap.logo : R.mipmap.logo;
    }
}

नोटिफिकेशन.कॉम पर SetChannelId (CHANNEL_ID) को सेट किए बिना।
शिहाब उद्दीन

7

यदि आप 26+ एसडीके संस्करण में पुश नोटिफिकेशन प्राप्त नहीं कर सकते हैं?

आपका समाधान यहाँ है:

public static void showNotification(Context context, String title, String messageBody) {

        boolean isLoggedIn = SessionManager.getInstance().isLoggedIn();
        Log.e(TAG, "User logged in state: " + isLoggedIn);

        Intent intent = null;
        if (isLoggedIn) {
            //goto notification screen
            intent = new Intent(context, MainActivity.class);
            intent.putExtra(Extras.EXTRA_JUMP_TO, DrawerItems.ITEM_NOTIFICATION);
        } else {
            //goto login screen
            intent = new Intent(context, LandingActivity.class);
        }

        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        PendingIntent pendingIntent = PendingIntent.getActivity(context, 0 /* Request code */, intent, PendingIntent.FLAG_ONE_SHOT);

        //Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
        //Bitmap largeIcon = BitmapFactory.decodeResource(getResources(), R.drawable.ic_app_notification_icon);

        String channel_id = createNotificationChannel(context);

        NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(context, channel_id)
                .setContentTitle(title)
                .setContentText(messageBody)
                .setStyle(new NotificationCompat.BigTextStyle().bigText(messageBody))
                /*.setLargeIcon(largeIcon)*/
                .setSmallIcon(R.drawable.app_logo_color) //needs white icon with transparent BG (For all platforms)
                .setColor(ContextCompat.getColor(context, R.color.colorPrimaryDark))
                .setVibrate(new long[]{1000, 1000})
                .setSound(Settings.System.DEFAULT_NOTIFICATION_URI)
                .setContentIntent(pendingIntent)
                .setPriority(Notification.PRIORITY_HIGH)
                .setAutoCancel(true);

        NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
        notificationManager.notify((int) ((new Date(System.currentTimeMillis()).getTime() / 1000L) % Integer.MAX_VALUE) /* ID of notification */, notificationBuilder.build());
    }

public static String createNotificationChannel(Context context) {

        // NotificationChannels are required for Notifications on O (API 26) and above.
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {

            // The id of the channel.
            String channelId = "Channel_id";

            // The user-visible name of the channel.
            CharSequence channelName = "Application_name";
            // The user-visible description of the channel.
            String channelDescription = "Application_name Alert";
            int channelImportance = NotificationManager.IMPORTANCE_DEFAULT;
            boolean channelEnableVibrate = true;
//            int channelLockscreenVisibility = Notification.;

            // Initializes NotificationChannel.
            NotificationChannel notificationChannel = new NotificationChannel(channelId, channelName, channelImportance);
            notificationChannel.setDescription(channelDescription);
            notificationChannel.enableVibration(channelEnableVibrate);
//            notificationChannel.setLockscreenVisibility(channelLockscreenVisibility);

            // Adds NotificationChannel to system. Attempting to create an existing notification
            // channel with its original values performs no operation, so it's safe to perform the
            // below sequence.
            NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
            assert notificationManager != null;
            notificationManager.createNotificationChannel(notificationChannel);

            return channelId;
        } else {
            // Returns null for pre-O (26) devices.
            return null;
        }
    }

NotificationCompat.Builder अधिसूचनाBuilder = नया नोटिफिकेशनCompat.Builder (संदर्भ, channel_id)

-> यहां आपको channel_idअपने डिवाइस का उपयोग करके पुश नोटिफिकेशन मिलेगा जो 26+ एसडीके संस्करण से युक्त है।

-> क्योंकि, NotificationCompat.Builder(context)यह पदावनत विधि है अब आप एक अद्यतन संस्करण का उपयोग करेंगे जिसमें दो पैरामीटर हैं एक संदर्भ है, अन्य चैनल_आईडी है।

-> NotificationCompat.Builder(context, channel_id)अद्यतन विधि। कोशिश करो।

-> डिवाइस के 26+ एसडीके संस्करण में आप हर बार channel_id बनाएंगे।


धन्यवाद मैं एक स्थिर
नोटिफ़िकेशन_ड

5

Android 8 अधिसूचना के लिए इस वर्ग का उपयोग करें

public class NotificationHelper {

private Context mContext;
private NotificationManager mNotificationManager;
private NotificationCompat.Builder mBuilder;
public static final String NOTIFICATION_CHANNEL_ID = "10001";

public NotificationHelper(Context context) {
    mContext = context;
}

/**
 * Create and push the notification 
 */
public void createNotification(String title, String message)
{    
    /**Creates an explicit intent for an Activity in your app**/
    Intent resultIntent = new Intent(mContext , SomeOtherActivity.class);
    resultIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

    PendingIntent resultPendingIntent = PendingIntent.getActivity(mContext,
            0 /* Request code */, resultIntent,
            PendingIntent.FLAG_UPDATE_CURRENT);

    mBuilder = new NotificationCompat.Builder(mContext);
    mBuilder.setSmallIcon(R.mipmap.ic_launcher);
    mBuilder.setContentTitle(title)
            .setContentText(message)
            .setAutoCancel(false)
            .setSound(Settings.System.DEFAULT_NOTIFICATION_URI)
            .setContentIntent(resultPendingIntent);

    mNotificationManager = (NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE);

    if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O)
    {
        int importance = NotificationManager.IMPORTANCE_HIGH;
        NotificationChannel notificationChannel = new NotificationChannel(NOTIFICATION_CHANNEL_ID, "NOTIFICATION_CHANNEL_NAME", importance);
        notificationChannel.enableLights(true);
        notificationChannel.setLightColor(Color.RED);
        notificationChannel.enableVibration(true);
        notificationChannel.setVibrationPattern(new long[]{100, 200, 300, 400, 500, 400, 300, 200, 400});
        assert mNotificationManager != null;
        mBuilder.setChannelId(NOTIFICATION_CHANNEL_ID);
        mNotificationManager.createNotificationChannel(notificationChannel);
    }
    assert mNotificationManager != null;
    mNotificationManager.notify(0 /* Request Code */, mBuilder.build());
  }
}

4

इस कोड की कोशिश करें:

public class FirebaseMessagingServices extends com.google.firebase.messaging.FirebaseMessagingService {
    private static final String TAG = "MY Channel";
    Bitmap bitmap;

    @Override
    public void onMessageReceived(RemoteMessage remoteMessage) {
        super.onMessageReceived(remoteMessage);
        Utility.printMessage(remoteMessage.getNotification().getBody());

        // Check if message contains a data payload.
        if (remoteMessage.getData().size() > 0) {
            Log.d(TAG, "Message data payload: " + remoteMessage.getData());

            String title = remoteMessage.getData().get("title");
            String body = remoteMessage.getData().get("body");
            String message = remoteMessage.getData().get("message");
            String imageUri = remoteMessage.getData().get("image");
            String msg_id = remoteMessage.getData().get("msg-id");
          

            Log.d(TAG, "1: " + title);
            Log.d(TAG, "2: " + body);
            Log.d(TAG, "3: " + message);
            Log.d(TAG, "4: " + imageUri);
          

            if (imageUri != null)
                bitmap = getBitmapfromUrl(imageUri);

            }

            sendNotification(message, bitmap, title, msg_id);
                    
        }


    }

    private void sendNotification(String message, Bitmap image, String title,String msg_id) {
        int notifyID = 0;
        try {
            notifyID = Integer.parseInt(msg_id);
        } catch (NumberFormatException e) {
            e.printStackTrace();
        }

        String CHANNEL_ID = "my_channel_01";            // The id of the channel.
        Intent intent = new Intent(this, HomeActivity.class);
        intent.putExtra("title", title);
        intent.putExtra("message", message);
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);


        PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
                PendingIntent.FLAG_ONE_SHOT);

        Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
        NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, "01")
                .setContentTitle(title)
                .setSmallIcon(R.mipmap.ic_notification)
                .setStyle(new NotificationCompat.BigTextStyle()
                        .bigText(message))
                .setContentText(message)
                .setAutoCancel(true)
                .setSound(defaultSoundUri)
                .setChannelId(CHANNEL_ID)
                .setContentIntent(pendingIntent);

        if (image != null) {
            notificationBuilder.setStyle(new NotificationCompat.BigPictureStyle()   //Set the Image in Big picture Style with text.
                    .bigPicture(image)
                    .setSummaryText(message)
                    .bigLargeIcon(null));
        }


        NotificationManager notificationManager =
                (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {       // For Oreo and greater than it, we required Notification Channel.
           CharSequence name = "My New Channel";                   // The user-visible name of the channel.
            int importance = NotificationManager.IMPORTANCE_HIGH;

            NotificationChannel channel = new NotificationChannel(CHANNEL_ID,name, importance); //Create Notification Channel
            notificationManager.createNotificationChannel(channel);
        }

        notificationManager.notify(notifyID /* ID of notification */, notificationBuilder.build());
    }

    public Bitmap getBitmapfromUrl(String imageUrl) {     //This method returns the Bitmap from Url;
        try {
            URL url = new URL(imageUrl);
            HttpURLConnection connection = (HttpURLConnection) url.openConnection();
            connection.setDoInput(true);
            connection.connect();
            InputStream input = connection.getInputStream();
            Bitmap bitmap = BitmapFactory.decodeStream(input);
            return bitmap;

        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
            return null;

        }

    }

}


मैंने इस कोड का उपयोग किया है लेकिन छवि के साथ प्रिय अधिसूचना तब दिखाई नहीं देती है जब पृष्ठभूमि में ऐप आपके पास कोई समाधान होता है कृपया मदद करें।
मोहसिन खान

यह कुछ कारकों पर निर्भर करता है जैसे: - 1. क्या आप नेटवर्क से जुड़े हैं .. ??? 2. क्या इमेज url उचित है (ब्राउज़र पर इमेजुर मारकर इमेजुरल चेक करें)
रोहित म्हात्रे

3

एंड्रॉइड ओ के लिए एंड्रॉइड नोटिफिकेशन डेमो ऐप और साथ ही कम एपीआई संस्करण। यहाँ GitHub-Demo 1 और GitHub-Demo 2 पर सर्वश्रेष्ठ डेमो ऐप है ।

यहां छवि विवरण दर्ज करें


कृपया इस बात का एक न्यूनतम कोड स्निपेट पोस्ट करने पर विचार करें कि बाहरी स्रोत से लिंक प्रदान करने के बजाय ऐप कैसे काम करता है, जो किसी स्रोत के स्वामित्व / संबद्धता के साथ नहीं है। (ये स्रोत किसी भी क्षण नीचे जा सकते हैं, जहां तक ​​पहुंचने के लिए कोई अन्य रास्ता नहीं है।)
एड्रिक

2

यह फ़ायरबेस एपी संस्करण 11.8.0 में बग है, इसलिए यदि आप एपीआई संस्करण को कम करते हैं तो आप इस मुद्दे का सामना नहीं करेंगे।


वास्तव में मैंने इसकी जाँच की है। यदि आप एंड्रॉइड एमुलेटर पर काम कर रहे हैं - भौतिक डिवाइस पर अपना ऐप जांचें। नए एक एमुलेटर किसी तरह सूचनाएँ नहीं दिखाते हैं।
डेडफिश

नहीं, वास्तव में यह वास्तव में फायरबस संस्करण 11.8.0 में एक बग था, और अब इसे नए संस्करण 12.0.0 में तय किया गया है। संदर्भ के लिए आप आधिकारिक रिलीज़ नोट देख सकते हैं: firebase.google.com/support/release-notes/android
M.Noman

2

मुझे Oreo पर एक ही समस्या आ रही थी और पता चला कि यदि आप पहली बार NotificationManager.IMPORTANCE_NONE के साथ अपना चैनल बनाते हैं, तो इसे बाद में अपडेट करें, चैनल मूल महत्व के स्तर को बनाए रखेगा।

यह Google अधिसूचना प्रशिक्षण प्रलेखन द्वारा समर्थित है जो बताता है:

सूचना चैनल बनाने के बाद, आप अधिसूचना व्यवहार नहीं बदल सकते हैं - उपयोगकर्ता का उस बिंदु पर पूरा नियंत्रण है।

ऐप को हटाने और फिर से इंस्टॉल करने से आप चैनल के व्यवहार को रीसेट कर सकेंगे।

जब तक आप उस चैनल के लिए सूचनाओं को दबाना नहीं चाहते, यानी चुप सूचनाओं का उपयोग करने से बचने के लिए IMPORTANCE_NONE का उपयोग करने से बचें।


1

यहाँ आप इसे कैसे करते हैं

private fun sendNotification() {
    val notificationId = 100
    val chanelid = "chanelid"
    val intent = Intent(this, MainActivity::class.java)
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK)
    val pendingIntent = PendingIntent.getActivity(this, 0, intent, 0)
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { // you must create a notification channel for API 26 and Above
        val name = "my channel"
        val description = "channel description"
        val importance = NotificationManager.IMPORTANCE_DEFAULT
        val channel = NotificationChannel(chanelid, name, importance);
        channel.setDescription(description);
        // Register the channel with the system; you can't change the importance
        // or other notification behaviors after this
        val notificationManager = getSystemService(NotificationManager::class.java)
        notificationManager.createNotificationChannel(channel)
    }

    val mBuilder = NotificationCompat.Builder(this, chanelid)
            .setSmallIcon(R.drawable.ic_notification)
            .setContentTitle("Want to Open My App?")
            .setContentText("Open my app and see good things")
            .setPriority(NotificationCompat.PRIORITY_DEFAULT)
            .setContentIntent(pendingIntent)
            .setAutoCancel(true) // cancel the notification when clicked
            .addAction(R.drawable.ic_check, "YES", pendingIntent) //add a btn to the Notification with a corresponding intent

    val notificationManager = NotificationManagerCompat.from(this);
    notificationManager.notify(notificationId, mBuilder.build());
}

पूरा ट्यूटोरियल => https://developer.android.com/training/notify-user/build-notification पर पढ़ें


1

CHANNEL_IDअधिसूचना में सूचना और सूचना । एक ही होना चाहिए, इस कोड की कोशिश:

String CHANNEL_ID = "my_channel_01";
NotificationChannel channel = new NotificationChannel(CHANNEL_ID, "Solveta Unread", NotificationManager.IMPORTANCE_DEFAULT);


Notification.Builder notification = new Notification.Builder(getApplicationContext(), CHANNEL_ID);

1

खैर मेरे मामले में, मेरे पास एंड्रॉइड 8.1.0 और मॉडल नंबर vivo1811 है , और मैंने उपरोक्त सभी समाधानों के साथ कोशिश की है, लेकिन कुछ भी काम नहीं करता है।

इसलिए अंत में, मैंने फायरबेस सपोर्ट को लिखा है, फिर आगे डीबगिंग पर, मुझे यह मिल रहा था- "बंद किए गए ऐप को प्रसारित करने में विफल": सुनिश्चित करें कि ऐप को बलपूर्वक रोका नहीं गया है "

और यह फायरबेस टीम का जवाब था ->

यह एक ज्ञात समस्या है जो कुछ ओईएम द्वारा कार्यान्वित बैटरी अनुकूलन के कारण होती है। जब ऐप स्विचर में किसी ऐप को स्वाइप किया जाता है, तो एप्लिकेशन को ऐसा माना जाता है जैसे कि उसे बलपूर्वक रोका गया था, जो कि डिफ़ॉल्ट डेटा व्यवहार नहीं है। इसका दुर्भाग्यपूर्ण साइड इफेक्ट यह है कि यह आपके ऐप के एफसीएम सर्विस को चलने से रोक सकता है। हम अपने अंत से इस व्यवहार को सुधारने के लिए काम कर रहे हैं, लेकिन वास्तविक सुधार ओईएम की ओर से आना है।

यहाँ OEM मूल उपकरण निर्माता के लिए खड़ा है ।


0

उपरोक्त समाधानों को आज़माने के बाद इससे जूझ रहे किसी व्यक्ति के लिए, सुनिश्चित करें कि अधिसूचना चैनल बनाते समय उपयोग की जाने वाली चैनल आईडी आपके द्वारा नोटिफिकेशन बिल्डर में सेट किए गए चैनल आईडी के समान है।

const val CHANNEL_ID = "EXAMPLE_CHANNEL_ID"

// create notification channel
val notificationChannel = NotificationChannel(CHANNEL_ID, 
NOTIFICATION_NAME, NotificationManager.IMPORTANCE_HIGH)

// building notification
NotificationCompat.Builder(context)
                    .setSmallIcon(android.R.drawable.ic_input_add)
                    .setContentTitle("Title")
                    .setContentText("Subtitle")   
                    .setPriority(NotificationCompat.PRIORITY_MAX)
                    .setChannelId(CHANNEL_ID)

0
private void addNotification() {
                NotificationCompat.Builder builder =
                new NotificationCompat.Builder(this)
                .setSmallIcon(R.drawable.ic_launcher_background)
                .setContentTitle("Notifications Example")
                .setContentText("This is a test notification");
                Intent notificationIntent = new Intent(this, MainActivity.class);
                PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent,
                PendingIntent.FLAG_UPDATE_CURRENT);
                builder.setContentIntent(contentIntent);
                // Add as notification
                NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
                if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O)
                {
                NotificationChannel nChannel = new NotificationChannel(NOTIFICATION_CHANNEL_ID, "NOTIFICATION_CHANNEL_NAME", NotificationManager.IMPORTANCE_HIGH);
                nChannel.enableLights(true);
                assert manager != null;
                builder.setChannelId(NOTIFICATION_CHANNEL_ID);
                manager.createNotificationChannel(nChannel);
                }
                assert manager != null;
                manager.notify(0, builder.build());
    }

0

निम्नलिखित विधि अधिसूचना को दिखाएगी , जिसमें बड़ा पाठ और फ्रीज सक्षम है (उपयोगकर्ता के स्वाइप के बाद भी अधिसूचना को हटाया नहीं जाएगा)। हमें NotificationManager सेवा की आवश्यकता है

public static void showNotificationOngoing(Context context,String title) {
        NotificationManager notificationManager =
                (NotificationManager) context.getSystemService(NOTIFICATION_SERVICE);

        PendingIntent contentIntent = PendingIntent.getActivity(context, 0,
                new Intent(context, MainActivity.class), PendingIntent.FLAG_UPDATE_CURRENT);

        Notification.Builder notificationBuilder = new Notification.Builder(context)
                .setContentTitle(title + DateFormat.getDateTimeInstance().format(new Date()) + ":" + accuracy)
                .setContentText(addressFragments.toString())
                .setSmallIcon(R.mipmap.ic_launcher)
                .setContentIntent(contentIntent)
                .setOngoing(true)
                .setStyle(new Notification.BigTextStyle().bigText(addressFragments.toString()))
                .setAutoCancel(true);
        notificationManager.notify(3, notificationBuilder.build());
}

अधिसूचनाएँ निकालने की विधि

public static void removeNotification(Context context){
    NotificationManager notificationManager =
            (NotificationManager) context.getSystemService(NOTIFICATION_SERVICE);
    notificationManager.cancelAll();
}

स्रोत लिंक


0
NotificationCompat.Builder(Context context)

पहले से अधिक या बराबर Android Oreo संस्करण के लिए पदावनत किया गया। आप कार्यान्वयन को उपयोग में बदल सकते हैं

NotificationCompat.Builder(Context context, String channelId)

0
fun pushNotification(message: String?, clickAtion: String?) {
        val ii = Intent(clickAtion)
        ii.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)
        val pendingIntent = PendingIntent.getActivity(this, REQUEST_CODE, ii, PendingIntent.FLAG_ONE_SHOT)

        val soundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION)

        val largIcon = BitmapFactory.decodeResource(applicationContext.resources,
                R.mipmap.ic_launcher)


        val notificationManager = getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager

        val channelId = "default_channel_id"
        val channelDescription = "Default Channel"
// Since android Oreo notification channel is needed.
//Check if notification channel exists and if not create one
        if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
            var notificationChannel = notificationManager.getNotificationChannel(channelId)
            if (notificationChannel != null) {
                val importance = NotificationManager.IMPORTANCE_HIGH //Set the importance level
                notificationChannel = NotificationChannel(channelId, channelDescription, importance)
               // notificationChannel.lightColor = Color.GREEN //Set if it is necesssary
                notificationChannel.enableVibration(true) //Set if it is necesssary
                notificationManager.createNotificationChannel(notificationChannel)


                val noti_builder = NotificationCompat.Builder(this)
                        .setContentTitle("MMH")
                        .setContentText(message)
                        .setSmallIcon(R.drawable.ic_launcher_background)
                        .setChannelId(channelId)
                        .build()
                val random = Random()
                val id = random.nextInt()
                notificationManager.notify(id,noti_builder)

            }

        }
        else
        {
            val notificationBuilder = NotificationCompat.Builder(this)
                    .setSmallIcon(R.mipmap.ic_launcher).setColor(resources.getColor(R.color.colorPrimary))
                    .setVibrate(longArrayOf(200, 200, 0, 0, 0))
                    .setContentTitle(getString(R.string.app_name))

                    .setLargeIcon(largIcon)
                    .setContentText(message)
                    .setAutoCancel(true)
                    .setStyle(NotificationCompat.BigTextStyle().bigText(message))
                    .setSound(soundUri)
                    .setContentIntent(pendingIntent)


            val random = Random()
            val id = random.nextInt()
            notificationManager.notify(id, notificationBuilder.build())

        }



    }

1
हालांकि यह कोड स्निपेट समस्या को हल कर सकता है, लेकिन यह नहीं समझाता है कि यह प्रश्न का उत्तर क्यों या कैसे देता है। कृपया अपने कोड के लिए एक स्पष्टीकरण शामिल करें , क्योंकि यह वास्तव में आपके पोस्ट की गुणवत्ता में सुधार करने में मदद करता है। याद रखें कि आप भविष्य में पाठकों के लिए प्रश्न का उत्तर दे रहे हैं, और उन लोगों को आपके कोड सुझाव के कारणों का पता नहीं चल सकता है। अधिक वोट और प्रतिष्ठा पाने के लिए आप इस उत्तर को बेहतर बनाने के लिए संपादन बटन का उपयोग कर सकते हैं !
ब्रायन टॉम्प्सेट -

0

नीचे का कोड ओरेओ में मेरे लिए काम कर रहा है, आप यह कोशिश कर सकते हैं। आशा है कि यह आपके लिए काम करेगा

निजी शून्य sendNotification (प्रसंग ctx, स्ट्रिंग शीर्षक, पूर्णांक notificationNumber, स्ट्रिंग संदेश, स्ट्रिंग पहलू, आशय आशय) {
कोशिश {

            PendingIntent pendingIntent = PendingIntent.getActivity(ctx, notificationNumber, intent,
                    PendingIntent.FLAG_UPDATE_CURRENT);
            Uri url = null;           
            NotificationCompat.Builder notificationBuilder = null;
            try {
                if (Build.VERSION.SDK_INT >= 26) {

                    try{
                        NotificationManager notificationManager = (NotificationManager)getApplicationContext().getSystemService(Context.NOTIFICATION_SERVICE);
                        notificationManager.deleteNotificationChannel(CHANNEL_ID_1);
                        notificationManager.deleteNotificationChannel(CHANNEL_ID_2);

                        if(!intent.getStringExtra("type").equalsIgnoreCase(""+TYPE_REQUEST)){
                            NotificationChannel breaking = new NotificationChannel(CHANNEL_ID_1, CHANNEL_ID_1_NAME, NotificationManager.IMPORTANCE_HIGH);
                            breaking.setShowBadge(false);
                            breaking.enableLights(true);
                            breaking.enableVibration(true);
                            breaking.setLightColor(Color.WHITE);
                            breaking.setVibrationPattern(new long[]{100, 200, 100, 200, 100, 200, 100});
                            breaking.setSound(url,new AudioAttributes.Builder().build());

                            notificationBuilder = new NotificationCompat.Builder(this,CHANNEL_ID_1)
                                    .setSmallIcon(R.mipmap.ic_launcher);
                            notificationManager.createNotificationChannel(breaking);

                        }else{

                            NotificationChannel politics = new NotificationChannel(CHANNEL_ID_2,CHANNEL_ID_2_NAME, NotificationManager.IMPORTANCE_DEFAULT);
                            politics.setShowBadge(false);
                            politics.enableLights(true);
                            politics.enableVibration(true);
                            politics.setLightColor(Color.BLUE);
                            politics.setVibrationPattern(new long[]{100, 200, 100, 200, 100});
                            politics.setSound(url,new AudioAttributes.Builder().build());

                            notificationBuilder = new NotificationCompat.Builder(this,CHANNEL_ID_2)
                                    .setSmallIcon(R.mipmap.ic_launcher);
                            notificationManager.createNotificationChannel(politics);
                        }
                    }catch (Exception e){
                        e.printStackTrace();
                    }

                } else {
                    notificationBuilder = new NotificationCompat.Builder(ctx)
                            .setSmallIcon(R.mipmap.ic_launcher);
                }
            } catch (Exception e) {
                e.printStackTrace();
            }

            if (notificationBuilder == null) {
                notificationBuilder = new NotificationCompat.Builder(ctx)
                        .setSmallIcon(R.mipmap.ic_launcher);
            }


            notificationBuilder.setContentTitle(title);          
            notificationBuilder.setSubText(subtext);
            notificationBuilder.setAutoCancel(true);

            notificationBuilder.setContentIntent(pendingIntent);
            notificationBuilder.setNumber(notificationNumber);
            NotificationManager notificationManager =
                    (NotificationManager) ctx.getSystemService(Context.NOTIFICATION_SERVICE);

            notificationManager.notify(notificationNumber, notificationBuilder.build());

        } catch (Exception e) {
            e.printStackTrace();
        }

    }

0

Android Oreo में नोटिफिकेशन ऐप चैनल और NotificationHelper class का उपयोग करके किया जाता है। इसमें चैनल आईडी और चैनल का नाम होना चाहिए।

पहले u को एक NotificationHelper Class बनाना होगा

public class NotificationHelper extends ContextWrapper {

private static final String EDMT_CHANNEL_ID="com.example.safna.notifier1.EDMTDEV";
private static final String EDMT_CHANNEL_NAME="EDMTDEV Channel";
private NotificationManager manager;

public  NotificationHelper(Context base)
{
    super(base);
    createChannels();
}
private void createChannels()
{
    NotificationChannel edmtChannel=new NotificationChannel(EDMT_CHANNEL_ID,EDMT_CHANNEL_NAME,NotificationManager.IMPORTANCE_DEFAULT);
    edmtChannel.enableLights(true);
    edmtChannel.enableVibration(true);
    edmtChannel.setLightColor(Color.GREEN);
    edmtChannel.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);

    getManager().createNotificationChannel(edmtChannel);

}
public NotificationManager getManager()
{
   if (manager==null)
       manager=(NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
   return manager;

}
public NotificationCompat.Builder getEDMTChannelNotification(String title,String body)
{
    return new NotificationCompat.Builder(getApplicationContext(),EDMT_CHANNEL_ID)
            .setContentText(body)
            .setContentTitle(title)
            .setSmallIcon(R.mipmap.ic_launcher_round)
            .setAutoCancel(true);
    }
}

गतिविधि xml फ़ाइल में एक बटन बनाएँ, फिर मुख्य गतिविधि में

protected void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    helper=new NotificationHelper(this);

    btnSend=(Button)findViewById(R.id.btnSend);

    btnSend.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            String title="Title";
            String content="Content";
            Notification.Builder builder=helper.getEDMTChannelNotification(title,content);
            helper.getManager().notify(new Random().nextInt(),builder.build());
        }
    });

}

फिर उर परियोजना चलाते हैं


0

आपको 26 (oreo) से ऊपर एपीआई स्तर के लिए एक अधिसूचना चैनल बनाने की आवश्यकता है।

`NotificationChannel channel = new NotificationChannel(STRING_ID,CHANNEL_NAME,NotificationManager.IMPORTANCE_HIGH);

STRING_ID = स्ट्रिंग सूचना चैनल नोटिफिकेशन के समान है

`Notification notification = new Notification.Builder(this,STRING_ID)
            .setSmallIcon(android.R.drawable.ic_menu_help)
            .setContentTitle("Hello Notification")
            .setContentText("It is Working")
            .setContentIntent(pendingIntent)
            .build();`

नोटिफिकेशन में चैनल आईडी और नोटिफिकेशन में समान होना चाहिए पूरे कोड इस तरह है .. `

@RequiresApi(api = Build.VERSION_CODES.O)
  private void callNotification2() {

    Intent intent = new Intent(getApplicationContext(),MainActivity.class);
    PendingIntent pendingIntent = PendingIntent.getActivity(this,11, 
    intent,PendingIntent.FLAG_UPDATE_CURRENT);
    Notification notification = new Notification.Builder(this,"22")
            .setSmallIcon(android.R.drawable.ic_menu_help)
            .setContentTitle("Hello Notification")
            .setContentText("It is Working")
            .setContentIntent(pendingIntent)
            .build();
    NotificationChannel channel = new 
    NotificationChannel("22","newName",NotificationManager.IMPORTANCE_HIGH);
    NotificationManager manager = (NotificationManager) 
    getSystemService(NOTIFICATION_SERVICE);
    manager.createNotificationChannel(channel);
    manager.notify(11,notification);

    }'

0

सबसे पहले, यदि आप नहीं जानते हैं, तो एंड्रॉइड ओरेओ यानी एपीआई स्तर 26 से यह अनिवार्य है कि सूचनाएं एक चैनल के साथ पुन: प्रकाशित की जाती हैं।

उस स्थिति में कई ट्यूटोरियल आपको भ्रमित कर सकते हैं क्योंकि वे oreo और उसके बाद के नोटिफिकेशन के लिए अलग-अलग उदाहरण दिखाते हैं।

तो यहाँ एक सामान्य कोड है जो oreo के ऊपर और नीचे दोनों पर चलता है:

String CHANNEL_ID = "MESSAGE";
String CHANNEL_NAME = "MESSAGE";

NotificationManagerCompat manager = NotificationManagerCompat.from(MainActivity.this);

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
    NotificationChannel channel = new NotificationChannel(CHANNEL_ID, CHANNEL_NAME,
    NotificationManager.IMPORTANCE_DEFAULT);
    manager.createNotificationChannel(channel);
}

Notification notification = new NotificationCompat.Builder(MainActivity.this,CHANNEL_ID)
        .setSmallIcon(R.drawable.ic_android_black_24dp)
        .setContentTitle(TitleTB.getText().toString())
        .setContentText(MessageTB.getText().toString())
        .build();
manager.notify(getRandomNumber(), notification); // In case you pass a number instead of getRandoNumber() then the new notification will override old one and you wont have more then one notification so to do so u need to pass unique number every time so here is how we can do it by "getRandoNumber()"
private static int getRandomNumber() {
    Date dd= new Date();
    SimpleDateFormat ft =new SimpleDateFormat ("mmssSS");
    String s=ft.format(dd);
    return Integer.parseInt(s);
}

वीडियो ट्यूटोरियल: यूट्यूब वीडियो

यदि आप इस डेमो को डाउनलोड करना चाहते हैं: GitHub लिंक


-1
    NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, "CHANNEL_ID")
            ........

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

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        CharSequence name = "Hello";// The user-visible name of the channel.
        int importance = NotificationManager.IMPORTANCE_HIGH;
        NotificationChannel mChannel = new NotificationChannel(CHANNEL_ID, name, importance);
        mNotificationManager.createNotificationChannel(mChannel);
    }
    mNotificationManager.notify(notificationId, notificationBuilder.build());
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.