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

Find if Appbadge is rendered on android phone

I am using ShortcutBadger (https://github.com/leolin310148/ShortcutBadger) to display appbadges on the devices that support. I am sending a notification remotely and triggering the app badges. How do I count if the particular device triggered the…
Mallik
  • 77
  • 7
0
votes
0 answers

How to set Badge value based on NextviewControllerValue?

I want to populate the firstComponentValue in a lbl_card_count badge. UILabel *lbl_card_count = [[UILabel alloc]initWithFrame:CGRectMake(23,0, 13, 13)]; int Temp_card_count; lbl_card_count.textColor = [UIColor whiteColor]; …
RAGHUNATH
  • 187
  • 3
  • 13
0
votes
2 answers

set app badge number by rows in table view with core data

I'm developing an app that uses Core Data for save and retrieve data. Now I would like to add a badge number on app's icon in the home screen but I have some problems... I tried this code: NSInteger section = [self.tableView…
matteodv
  • 3,992
  • 5
  • 39
  • 73
0
votes
0 answers

How to increase the badge number when the app is killed (not in BG)? IOS

I'm able to to manage the update of badge icon when the app is in background but i cant do it when the app is killed.. Any suggestions?
Gaston
  • 1
  • 1
0
votes
0 answers

Badge on launcher icon for nexus, asus , or some of devices having OS above 5.0

How to implement badge on the application launcher icon, i implemented badge with the help of some of link like…
Pratibha sarve
  • 369
  • 2
  • 11
0
votes
1 answer

Is it possible to update badge number on app icon without openining app on push notification in iOS?

iOS 8 or 9 When I get push notification in my iOS app I want to update the badge number (count in red) shown on the app icon without opening the app. Currently it gets updated only and only once the app is opened. Is that possible?
Gaurang
  • 65
  • 2
  • 12
0
votes
1 answer

Windows 10 Mobile AppBar Button - Badge count

is there any chance to put badge count to the AppBarButton control on Windows 10, as you can do it on Android - e.g. How to display count of notifications in app launcher icon If not, any idea what is a good practice to inform user about some new…
Pablo
  • 13
  • 4
0
votes
1 answer

How do I decrement the PFInstallation for Parse in my iOS app?

I am using Parse and PFInstallation to increment my app's badge count based on notifications from Parse. I need to be able to decrement that number as well - not just reset it; I'm looking for the same behavior with iOS Messages or Mail app badging.…
Todd Hopkinson
  • 6,803
  • 5
  • 32
  • 34
0
votes
1 answer

How to indicate new message in UITableViewCell

I have a problem which should be a trivial one but I still can't find a good solution to it. I have a tableView in which I store cells representing different threads/chatrooms. I have an NSArray with data for cells/chats. I want to display a badge…
Bartek Uchański
  • 119
  • 1
  • 12
0
votes
1 answer

How to increase a number in badge on ionic

I'd like to increase a number in a badge. I set the number 0 in 'app.js'. And I made minus button, plus button and textbox. There is a number in the textbox. If I tab the minus or plus button, the number would change. I added an action in the button…
TaeJoon Jeon
  • 55
  • 1
  • 5
0
votes
1 answer

how to solve java.lang.StackOverflowError from BadgeView class

i am using this BadgeView class to create badge in calendar event date..first time its run but when goes to next month BadgeView class it gives stackoverflow error.. badgeView class calling by this and badge appy on linearlayout badge = new…
ron
  • 21
  • 4
0
votes
1 answer

Swift - Set TabBarBadge after receiving push

I have a little problem. I want to set a Badge on a Tab after receiving push but I can't figure out how I can change the badge value (From my AppDelegate) func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject…
Godlike
  • 1,621
  • 2
  • 20
  • 33
0
votes
0 answers

How to inflate badge counter in MenuItem using custom LayerDrawable

I was following this article. Unfortunatelly, badge isn't drawn. Of course I changed invalidateOptionsMenu method to supportInvalidateOptionsMenu method. I was checking the log, step by step and found out that draw method in custom Drawable named…
Jack Lynx
  • 216
  • 2
  • 12
0
votes
2 answers

How to detect to which cell add badge?

When I receive a message I write the username and count of unread messages to CoreData. And with the help of this function: func unreadMessagesCountBadge(cell: onlineUserCell, forCount count: Int) I add to the cell my badge. But the problem is, I…
Orkhan Alizade
  • 7,379
  • 14
  • 40
  • 79
0
votes
1 answer

How to detect cell for adding badge on it?

I have a function, which adds badge on cell: unreadMessagesCountBadge(cell, forCount: messagesCount) but I do not know, how to detect cell what I need for adding this badge on it? For example, I have a users list and one of my contacts sent me a…
user4809833