Questions tagged [badge]

A badge is a concise visual indication of something important to the user.

A badge is an unobtrusive notification in an application, indicating to the user a count of actionable objects that the user may wish to attend to. For example, number of new emails or unread messages.

A badge is not to be used as an urgent message requiring immediate user action, but rather assists in program flow, giving the user information about another part of the application that is not currently in focus.

867 questions
0
votes
1 answer

Badge count not updating from push on iOS7

I'm having trouble updating the badge count on an iOS7 application from a push notification. It works fine in iOS8 but, although the push is being received, the badge count isn't updating in iOS7. A test payload I'm using is as follows:…
NRaf
  • 7,407
  • 13
  • 52
  • 91
0
votes
1 answer

iOS 8. Change app badge number without any notifications

In my app I need to set badge onto the app icon and set numbers for this badge. The problem is that I need to register user notification settings like this: if ([[UIApplication sharedApplication]…
Andrey Chernukha
  • 21,488
  • 17
  • 97
  • 161
0
votes
1 answer

Add viewbadger in to pagerTabStrip in Android L

addTab is deprecated in API 21, so I have to change my tab layout to PagerTabStrip, but I can't find a way to add in custom XML layout in to pagerTabStrip tabs... As I understand, viewBadger need to inflate a custom XML. Hope my question is answered…
Daniel tan
  • 13
  • 3
0
votes
0 answers

iOS app badge icon set to 1 unexpectedly

Is there any reason my app may have a badge icon set to "1"? The app registers to receive notifications, but I am certain that none have been sent. Running iOS 8.1.2, using an iPhone 6+
Chicowitz
  • 5,759
  • 5
  • 32
  • 38
0
votes
1 answer

Create directive to check new message and add badge

I use this controller in ionic app to check new message or activity and add a badge if is there news: .controller('checkNew', function($scope, getNewMsg, getNewAct, $localstorage, $cordovaLocalNotification, $http, $state) { …
DigitalXP
  • 179
  • 5
  • 18
0
votes
1 answer

newbie need help ! !

ok guys so i'm new in iphone dev you know it ! I want to add badge from my app : i know how to in the application did finish launching. But i want to it depending on an int value i have stored in a plist (just one string an int value) i have…
Florent
  • 21
  • 3
0
votes
0 answers

Update badgeValue from AppDelegate

I was able to access without problem to a particular "tab" from appDelegate with this code: UIStoryboard *mainStoryBoard = [UIStoryboard storyboardWithName:@"Main" bundle:nil]; UINavigationController *myView = [mainStoryBoard…
Blasco73
  • 2,980
  • 2
  • 24
  • 30
0
votes
0 answers

How to repeate NSTimer every day at particular time in iOS app

I have method which call the sqlite method to get data and then display count to application badge number in ip. I want that the method should be called every day at 12.5 am so that it has new count for the day. I am doing in following way: …
0
votes
1 answer

set tab badge from urban airship push notification

My app has four tabs, each of which may "receive" a push notification. Right now I show a badge for he app at large. But when a notification comes, I would like to increment the badge of the appropriate tab. How might I route the push notification…
0
votes
2 answers

how can i put badge icon within the app in menu bar?

Hello all, Above is the snapshot of my application which gets push notification from my server. There are 3 notification for now and i have put that in my right menu bar inside a UITable view. Everything is working fine but i want to ask how do i…
Abstract
  • 561
  • 1
  • 8
  • 29
0
votes
1 answer

How to design logic to store rules assigning badges and reputation points to site users

In my current web application, I have to create a "Reputation Points & Badges Engine" somewhat similar to SO. That system contains many rules and each rule is associated with a few predefined user activities (like view question, vote question,…
mgarg
  • 1,197
  • 1
  • 8
  • 5
0
votes
1 answer

Role assignment on completion of Quiz

I want to assign the user a role on successful completion of quiz so that a badge based on role can be assigned. Here is what I have tried: 1. In Quiz module, Taking Options in Edit Quiz, added Assign Action of Node > save content 2. Created a VBO…
0
votes
0 answers

NetBeans - is there any way to disable the recurring error badges?

In NetBeans 8.0.1 error badges are recursive back to the project name from a file that has errors in it. This makes most of my projects look like they have errors that need to be fixed, even if the errors are being generated from code in, for…
Markie
  • 760
  • 17
  • 32
0
votes
1 answer

How to get count of total push notifications in android for an application?

I am working on badges on launcher icon of application in android,I want to get total number of push notification for my app to display as a badge on my app's launcher icon,I am using parse.com for the push notifications in android,So can any buddy…
user3820044
  • 177
  • 1
  • 3
  • 20
0
votes
1 answer

java-apns badge count for each device?

I am using java-apns library. Here is my code: String payload = APNS.newPayload().alertBody("Message").badge(2).build(); apnsService.push(tokens, payload); Why there is many tokens and only one number for badge? Each phone has its own number of…
user3929583