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

how to show badge counts on launcher icon in my android app?

I have tried below intent method but it does not work, Intent intent = new Intent("android.intent.action.BADGE_COUNT_UPDATE"); intent.putExtra("badge_count", 3); intent.putExtra("badge_count_package_name",…
0
votes
2 answers

Any method for accumulating the badge number with Firebase?

This question maybe duplicate,but I want to ask it again, cause perhaps some guy know how to solve it. As we know, we can set the badge before push a notification with Firebase.If the application is in background and a remote notification is…
Ringo
  • 1,173
  • 1
  • 12
  • 25
0
votes
1 answer

Adding badge icon to iOS 10 on Xcode 8.3

Here is my AppDelegate (made from a developer in Xcode 8.3, iOS10), it is working perfectly to send notifications, but I would like to add a badge to my iPhone dashboard. I tried to add application.applicationBadgeNumber = XX but the XX never…
0
votes
0 answers

How to add unread badge count on icons/application icons

As I search throughout Google. I'm finding result between 2013 and 2014 answers which giving me a negative thought. They say that badge counter can only be achieve by using launchers (e.g. Nova launcher) or any other 3rd party app. It's already…
jace
  • 1,634
  • 3
  • 14
  • 41
0
votes
1 answer

Updating badge in a timed notification in swift 3?

I have been trying out Notification coding just to be able to add some to my app, however the big issue is, I can say , something.badge = 3 and such, but I can't say something.badge +=1 or something.badge = badge +1 so far, my code is…
0
votes
1 answer

Set badge for tab bar item embedded in navigation controller

I am trying to set a badge value for a tab bar item embedded in a navigation controller from the tabBarController.m (tab bar controller --> navigation bar --> view controller), i used this code but it's not…
0
votes
2 answers

add badge on icon of a tab in a tablayout using badgeView

I have looked all round stackoverflow how i can add a badge in an icon of a tab in a tab layout, yet have no answer. This is my code //Get reference to your Tablayout TabLayout tabLayout = (TabLayout) findViewById(R.id.tabs); …
Mcjohn Key
  • 15
  • 8
0
votes
1 answer

ionic tabs badge don't working if set badge = "object"

this code is ok , badges can normal display, but if code is :
L.Wilon
  • 1
  • 2
0
votes
1 answer

How do I create my own Github badge?

I would like to create a badge for my Github repo which shows as failing or passing based on a set script that I run as a webhook on each commit. This would be a custom script and would be run every commit, how would I be able to create this?
Trevor K
  • 33
  • 7
0
votes
0 answers

How to List All Badges Except Those Badges Already Completed

How can @badges_available list all badges from User.first (the admin user) except for those badges which have already been completed by current_user? Something like .where(title != @badges_available.title) @badges_available =…
AnthonyGalli.com
  • 2,796
  • 5
  • 31
  • 80
0
votes
1 answer

AngularJS counter

I need help understanding why my counter doesn't work. I need a badge to increment/decrement every time I click. When the increment/decrement is done and i pass that counter to my scope badge, i get undefined. But if i add a static number it works. …
Mr_mufy
  • 11
  • 1
  • 4
0
votes
1 answer

How do i Implement Notification Badge With RecyclerView in Android Application?

I want to count the onclick() of button in RecyclerView. But it Does not visible in Notification TextView.
0
votes
1 answer

Dropbox badge for MS Access who is working on the same file

My question is: Is there a badge for MS Access files like this: https://blogs.dropbox.com/dropbox/2015/10/dropbox-badge-now-available/ And is it possible to collect Dropbox badge information with VBA as one of the notibles (Greg K) of Dropbox has…
0
votes
1 answer

Accessing SegmentedButton Buttons To Change Badges in Sencha

I've declared a new Ext.SegmentedButton() called "myseg" with a couple of items... In a another function i want to access the badges of each button in "myseg" and change the values... how do I got about doing that? How can I access the "buttons"…
Quickredfox
  • 1,428
  • 14
  • 20
0
votes
1 answer

TeslaUnread not receiving count and putting badge on app icon

I'm trying to add support for TeslaUnread in my application. It puts a numerical badge on an app icon when using the paid version of Nova Launcher. The documentation is here: http://novalauncher.com/teslaunread-api/. Here is the code I use to send…
Jake Moritz
  • 843
  • 2
  • 9
  • 21