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
3 answers

Flex install badge inside a Flex Application?

I have created a flex SWF file for my web page. I also have a AIR application. Is it possible to use the install badge that is available for HTML pages inside my Flex web application? Or any alternative ideas / suggestions? Thanks.
medoix
  • 1,189
  • 2
  • 16
  • 36
0
votes
2 answers

Adding badge number in UItabbarView Controller in runtme

I am trying to add badge number in UITabBarController and it is working . But i started NSTimer . when timer completed . it calls webservice and in return i get badge number . but when i set badge number to UITabBarController in this senario . it is…
0
votes
1 answer

IBM Worklight: Push Notification and Badge

On testing Worklight push notification for Android, if the alert (notification message) is empty, the app icon with app name will be displayed in notifications bar without any notification message. May I know how Worklight will handle this case if…
red23jordan
  • 2,841
  • 10
  • 41
  • 57
0
votes
1 answer

iphone IOS Anyway to get Added Control in ToolBar to come to front

This is a bit of a hack, but trying to get a badge on a toolbaritem. Almost there, but it appears in the back, tried normal methods to get to front with no luck. deletedCountBadge = [CustomBadge customBadgeWithString:@"0"]; deletedCountBadge.frame…
ort11
  • 3,359
  • 4
  • 36
  • 69
0
votes
1 answer

Application Icon badge Count is showing 2 for the first install

I am using UILocalNotifications in my application, When i am launching the app for the first time badge count on app icon shows 2. Same thing is happening when i installed the app with IPA file.if i opened the application once and enters in to…
Madhu
  • 994
  • 1
  • 12
  • 33
0
votes
2 answers

Showing and deleting number on badge depending upon the Apple Push Notifications

I have an app where I am using apple push notifications. Now I need to show the badge number depending upon the notifications, and I also need to decrease the badge number accordingly. I know this method is used for showing badge, but I am getting…
user2174560
  • 139
  • 1
  • 2
  • 7
0
votes
1 answer

Badge color doesn't change, in firefox, using crossrider API (setBadgeText)?

I'm using crossrider, and I want to change the badge color of the browser button Here's the code (in background.js) appAPI.ready(function() { appAPI.browserAction.setBadgeText('0', [255, 127, 127, 125]); // GREY Color }); The code works well in…
Ashraf Bashir
  • 9,686
  • 15
  • 57
  • 82
0
votes
1 answer

iOS - incorrect badge value retrieved from tab

I'm trying to retrieve the value displaying for a specified tab. It was working before and it stopped for some reason? The int current_badge = line on the code below is where the badge value is fetched and returns zeros no matter what the badge…
Grymjack
  • 529
  • 1
  • 10
  • 21
0
votes
1 answer

What is the best way to add avatar to Google plus badge?

I want to add a Google plus badge to my blog. Currently I added a google plus badge to my blog and tried to add an image to it by the following code:
Mostafa Shahverdy
  • 2,687
  • 2
  • 30
  • 51
0
votes
1 answer

Add badgeview on ActionBarSherlock MenuItem

I would like to add a badge over ActionBar MenuItem But the digit icon didn't shows. Here's what I have done so far public class Main extends SherlockFragmentActivity { private Fragment menuFrag=null; private MenuItem menuMsg=null; private…
RRTW
  • 3,160
  • 1
  • 35
  • 54
0
votes
1 answer

How to add iOS plugins to phonegap?

I try add Badge plugin, but it still not working. How to make it? Or there may be an example project with Badge plugin? Thx.
user1802209
  • 97
  • 2
  • 9
0
votes
1 answer

UILocalNotification - Add 1 to CURRENT icon badge

So I've got a UILocalNotification setup to change the Icon badge. [myNote setApplicationIconBadgeNumber:[[UIApplication sharedApplication] applicationIconBadgeNumber]+1]; So it works fine if I don't change the badge number after I set it. If the…
mhbdr
  • 753
  • 2
  • 10
  • 26
0
votes
2 answers

How can I update my app's Live Tile Badge in WP8?

I hoped this code from page 549 of Nathan's "Windows 8 Apps with XAML and C#": //string xmlString = @""; string xmlString = string.Format(@"", 42); XmlDocument document = new XmlDocument(); …
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
0
votes
0 answers

I want to re-position the badge graphics on a tab control

Does anyone know how to re-position the badges on a UITabController? I'm using custom graphics and the badge graphic have the right edge cut off.
Grymjack
  • 529
  • 1
  • 10
  • 21
0
votes
0 answers

Schedule daily update of IconBadgeNumber from applicationDidEnterBackground

I've been able to set an application badge number to my iPhone app and updating it once the user interacts with my app: [[UIApplication sharedApplication ] setApplicationIconBadgeNumber:currNrOfNotif]; What I wont though, is for this process to…