Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7741577
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T09:03:50+00:00 2026-06-01T09:03:50+00:00

I am using notifications in my Android application. Whenever i receive a notification, i

  • 0

I am using notifications in my Android application. Whenever i receive a notification, i am trying to increment the number of unread notifications using notification.number as in the code below.

NotificationManager notificationManager = (NotificationManager) 
getSystemService(NOTIFICATION_SERVICE);
Notification notification = new Notification(R.drawable.icon,
"A new notification", System.currentTimeMillis());
notification.flags |= Notification.FLAG_AUTO_CANCEL;
notification.number += 1;
Intent intent = new Intent(this, NotificationReceiver.class);

PendingIntent activity = PendingIntent.getActivity(this, 0, intent, 0);
notification.setLatestEventInfo(this, "This is the title",
"This is the text", activity);
notificationManager.notify(0, notification);

But, no matter how many notifications i receive, the counter is not incrementing. Its always displaying 1 only. I am not getting what is wrong here. Could anybody help me…?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T09:03:51+00:00Added an answer on June 1, 2026 at 9:03 am

    The problem is, you are creating a new notification object. just create once, check if it exists in field

    public class main extends Activity {
    
    Notification notification=null;
    
    
    //....
    if (this.notification == null)
        this.notification = new Notification(R.drawable.icon,
            "A new notification", System.currentTimeMillis());
    
    this.notification.flags |= Notification.FLAG_AUTO_CANCEL;
    this.notification.number += 1;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created an application that creates notifications, using the following code: // notification
I'm trying to use custom notifications in my Android application using Google's sample from
I'm using this code from Microsoft to play audio notifications for my application. It's
im trying to make an android application that whenever a user conncects to a
I am trying to display a notification msg on android simulator device by using
I am developing android push notification application using C2DM,I am facing some problems in
I'm currently writing an Android application that should be able to receive push notifications
I'm trying to get the hang of using notifications. In my view controller class,
I have an application built using PhoneGap (Android) that is essentially a shell for
I have Android application which is Sales Rep application.When he using the app first

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.