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

Best way to implement iOS badge notifications in Tab Bar

Generally speaking I want to query my DB for all new FeedItems in the last 10 minutes. This Feed should have a nice batch of new FeedItems every 10 minutes. I've written a function: func getRecentFeedItems() { // Set up timing let date =…
SamYoungNY
  • 6,444
  • 6
  • 26
  • 43
0
votes
1 answer

How Can I Make Two Badges (that Give a Live Status of Streaming Channels) Automatically Refresh Every Minute?

Okay so I have these two badges: http://codepen.io/EagleJow/pen/bVrMZv One is for a Twitch channel, one is for a Livestream channel. I'd like to know if there's an easy way to update the badges on the page every minute to show the current live…
Eagle Jow
  • 37
  • 1
  • 8
0
votes
1 answer

Badge button in app iOS

I could really use some recomendations about what or how to have a badge button inside the app. I am currently uisng BBBadgeBarButtonItem, but it has a bug in iOS9 that the badge number is in a rectangle and not in a circle. Like this: So, I was…
razvan
  • 355
  • 4
  • 19
0
votes
1 answer

Using XML Data and Javascript to Make a Livestream Online/Offline Badge

I'm trying to make a badge that says whether or not my Livestream channel is online or offline. I found some javascript that can do this for Twitch channels: (function() { var user_name, twitch_widget; user_name = "nerdist"; twitch_widget =…
Eagle Jow
  • 37
  • 1
  • 8
0
votes
1 answer

How to put badge at the right corner of a view

I am trying a badge View as suggested in this link. I am trying with this code . String count_str = Integer.toString(count); TextView text_view = (TextView) findViewById(R.id.textView); badge1 = new BadgeView(this,…
osimer pothe
  • 2,827
  • 14
  • 54
  • 92
0
votes
1 answer

Application badge number updates parse swift

I have an app implementing push notifications with parse. I am having some issues clearing the badge icon when a user opens up the app. I have the following line of code in my appDelegate didFinishLaunchingWithOptions and in the app…
user2363025
  • 6,365
  • 19
  • 48
  • 89
0
votes
1 answer

Displaying iOS badge number / Handling unread messages (xCode - OBJECTIVE-C)

I would like to update the inbox badge to display the number of unread messages (my messages don't self destruct, app is similar to iOS messages). When the user clicks on a messages and goes back to the inbox tab the badge should be updated. Also,…
Dee Greene
  • 41
  • 1
  • 10
0
votes
1 answer

IBM Worklight- Automatically badge increment when Push Notification Arrives

Brothers! I am using Mobilefirst v7 and needs to auto increment the icon badge number when notification arrives into Mobile. currently, when I open the app by tapping on to the notification then my code allow to increment badge number on icon. I…
Terry
  • 21
  • 4
0
votes
1 answer

Excel VBA collect Dropbox badge information

I would like to avoid the conflicing copies Dropbox automatically will create if more than one person at the same time edit an Excel document. Dropbox have made a smart "badge" with information popping up, if someone is opening the files while you…
0
votes
1 answer

Add Notification Badge for unread Notifications in Android

I want to add the count of unread notification at my app icon I tried this link but this was not helpful
Manu
  • 3
  • 2
0
votes
1 answer

Whenever my app receives a push notification it increments up from the last badge number (not 0)

I'm having a problem with my badge incrementation. I'm using the CloudKit push notifications, and when my app receives a push notification, it increments up from the last notification number. So even when I reset it to zero…
user3136022
  • 87
  • 10
0
votes
2 answers

unbadging app icon (swift) execution problems

Hey Guys so what I am trying to do is when the user gets a notification then goes into the app or clears it in the notification settings I want to debadge the app icon import UIKit class TechByteSchedulingViewController:UIViewController { …
0
votes
1 answer

How to change the badge of a view controller that isn't loaded?

I have a tab bar controller, that has 3 view controller attached. Say you start up the app, the first view controller is the only view out of the other three that is loaded. I want set the badge value of the third view controller that isn't loaded.…
Josh
  • 745
  • 1
  • 7
  • 22
0
votes
1 answer

How to update a notification badge on tab?

I have two tabs and when click elements (portlet div) on Master tab, badge will increase, also when click on Creation tab, badge will return to 0. Two tabs look like these:
0
votes
4 answers

How to execute a method at a certain date?

My Mac App updates it's badge number at a certain time. Here is my function: - (void)setBadgeNumber { // Sets the badge number to 1. [[[NSApplication sharedApplication] dockTile] setBadgeLabel:@"1"]; // Sends a notification. …
Developer
  • 406
  • 1
  • 4
  • 18