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

LocalNotification badge shows wrong Number in iOS7

I have built a test-application for local notifications. it looks like this UILocalNotification* localNotification = [[UILocalNotification alloc] init]; localNotification.fireDate = [NSDate dateWithTimeIntervalSinceNow:10]; …
user1895268
  • 1,559
  • 3
  • 11
  • 23
0
votes
1 answer

is it possible to add UILabel inside Tab Bar Item (BadgeValue)

Referring above image: 1. The issue is to set Number inside circle of Tasks image in "Tasks tab". 2. Is it possible to set number i.e UILabel at given location inside tab bar item? Thank You. Updated: This is what i wanted and got using badge…
Yogesh Lolusare
  • 2,162
  • 1
  • 24
  • 35
0
votes
1 answer

iOS badges for both remote and local notifications

My app receives both types of notifications, push and local, and I don´t know what the best way to manage the badge number is. In case of local notifications, I increment the badge counter whenever I create one, but in the case of push…
AppsDev
  • 12,319
  • 23
  • 93
  • 186
0
votes
1 answer

The github android library, Viewbadge, How to set rightMargin position?

I tried this, but doesnot work: LinearLayout.LayoutParams params = new LinearLayout.LayoutParams( LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT ); params.setMargins(0, 0, 200, 0); …
Victor Choy
  • 4,006
  • 28
  • 35
0
votes
0 answers

How to remove badge in Sencha Touch 2.3

How can I dynamically remove a badge from a tab bar that I previously set with setBadgetText('text')? Official documentation doesn't mention a solution and if I try with setBadgeText('') or setBadgeText() I can see a right margin near the tab button…
Andrea
  • 45
  • 1
  • 5
0
votes
3 answers

change applicationIconBadgeNumber color

Taking a long shot here. Is there an option to change applicationIconBadgeNumber color from red to something else? (in IOS 7) Our logo is red and the badge doesn't stand out enough...
Boaz
  • 4,864
  • 12
  • 50
  • 90
0
votes
2 answers

UITabBar badge not updated

I can't seem to add a badge on a TabBarItem Tried a lot of options (that's why the code is splitted into variables). Thought it had something to do with the treading so the update is back on the main thread, still nothing. The…
Boaz
  • 4,864
  • 12
  • 50
  • 90
0
votes
2 answers

How to bage Number in iOS app while app is closed

I am using badge notifications in my app and it works fine but I get the badge number by calling a method. So if method is called then the badge number gets increased but how to call that method while app is closed. - (void)repeatedMethod { …
0
votes
0 answers

ios badge not changing when application in inactive State in Push Notifiaction

I want to change badge of my application when my application is in inactive state. When my application is in active state The badge is incrementing by 1 by -(void)application:(UIApplication *)application didReceiveRemoteNotification: …
user1878531
  • 55
  • 1
  • 9
0
votes
0 answers

Chrome Webdriver - badge NOT showing on Webdriver but they show in Chrome browser

I am using Selenium Chrome Webdriver for my automation, and I noticed a difference between the normal Chrome browser and the Webdriver Browser. The html page contains code:
mishmaccas
  • 131
  • 3
0
votes
0 answers

Samsungs TouchWiz BadgeProvider

Is there any documentation about the BadgeProvider? Many Apps use it, but I didn't find any documentation about it... Regards Sebi2020
Sebi2020
  • 1,966
  • 1
  • 23
  • 40
0
votes
1 answer

Fetch notifications from notification bar

I need to get the unread notifications count of any installed app in my device. For example: get unread notification count of Facebook App, Whats app App, or device Messages, etc., anything present in the notification bar, that hasn't been read…
0
votes
0 answers

How to push notification count on android app icon

When PushNotification coming from GCM. i got one count number based on that i need to show a count on my android app icon in my device applications list.
Srinu Gude
  • 31
  • 1
  • 3
0
votes
2 answers

IconBadgeNumber still appear, nevertheless removed IconBadgeNumber description

The problem is IconBadgeNumber "1" still appear. I have removed all applicationIconBadgeNumber description, removed the app and built again. nonetheless Icon Badge Number still appear. Why do such problem occur?
kusumoto_teruya
  • 2,415
  • 4
  • 23
  • 38
0
votes
1 answer

Merit gem no longer works on Rails 4.1

So I loaded a Badge with an image just fine on rails 3.2 badges = [ {id: 1, name: 'Democratic-Society', description: "Voted for two bands", image: "demo_society2.gif"} ] badges.each do |badge| Merit::Badge.create!(badge) end But I just updated…
mystic cola
  • 1,465
  • 1
  • 21
  • 39