[android-developers] Status bar notification in Android

2016-12-22 Thread azhar uddin
Status Bar Notification This NOTIFICATION on Android can be done in any of the following ways: Status Bar Notification Vibrate Flash lights Play a sound To create a status bar notification, you will need to use two classes: Notification and NotificationManager. Notification – defines the

[android-developers] Status bar

2016-05-01 Thread Osama
Hi, The status bar should be like this pic#1 what i need is to make it like pic#2 yet when an application starts such as Whatsapp the new bar should be like this pic#3 These images are an example.. Specs: 1- the new status bar should *not *vanish when an app start. 2- it must be stand still

Re: [android-developers] Status Bar Notification

2013-12-15 Thread Rahul Kaushik
am able to solve it,actually there is an option Show Notification which need to be selected in settings--apps-yourApp Thanks RK On Thu, Dec 12, 2013 at 8:57 PM, Justin Anderson magouyaw...@gmail.comwrote: Complete shot in the dark here... but have you tried giving your notification an id

Re: [android-developers] Status Bar Notification

2013-12-12 Thread Justin Anderson
Complete shot in the dark here... but have you tried giving your notification an id other than 0? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Sun, Dec 8, 2013 at 10:51 PM, Rahul Kaushik rahulkaushi...@gmail.comwrote: Hi, Status bar notififcation

[android-developers] Status Bar Notification

2013-12-08 Thread Rahul Kaushik
Hi, Status bar notififcation is not showing up in Sony Xperia z with android version 4.2 Code NotiCountValue= NotiCountValue + ncount; NotificationManager mNotificationManager = (NotificationManager) context .getSystemService(Context.NOTIFICATION_SERVICE); CharSequence contentTitle =

Re: [android-developers] status bar noticfication click event

2013-11-22 Thread Justin Anderson
Unless you are modifying the Android OS and writing your own custom version of Android there is no way to do this. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Nov 21, 2013 at 5:10 AM, Rahul Kaushik rahulkaushi...@gmail.comwrote: Hi, How i

[android-developers] status bar noticfication click event

2013-11-21 Thread Rahul Kaushik
Hi, How i can get click event in status bar notification and call method on click event pls suggest Thanks RK -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

[android-developers] status bar clock stops updating

2012-10-22 Thread Steve Delaney
Hi all, I ran into a problem testing clock update. I am testing on Beagleboard with Gingerbread 2.3 Using a clock source like 3G modem, the network time can be updated to refresh the status bar clock but sometimes the status bar clock stops updating. the command line 'date' command is

[android-developers] Status Bar Notification sometimes disappears with Android 4?

2012-08-09 Thread Terry
I have an app with a foreground Service, which shows a Status Bar Notification. It is working working properly with Android 2 and 3, but now I see that on some devices with Android 4, the Notification sometimes disappears a while after the Service is started. When the Service is restarted, the

Re: [android-developers] Status Bar Notification sometimes disappears with Android 4?

2012-08-09 Thread Kostya Vasilyev
If you change state of any component in your app with PackageManager (not necessarily the service itself), you might be running into this: http://code.google.com/p/android/issues/detail?id=21635 -- K 2012/8/9 Terry terb...@gmail.com I have an app with a foreground Service, which shows a

[android-developers] Status Bar Position

2011-08-13 Thread John
In my program I need to know the location of the devices status bar. Normally I would expect it to be at the top but on my 3.0 emulator it's at the bottom. Can I assume that it will always be at the bottom for 3.0+ and at the top for others or is there a way to get this programmatically?

Re: [android-developers] Status Bar Position

2011-08-13 Thread Appaholics
In honeycomb the status bar is always at the bottom and AFAIK can not be hidden. On 1.X to 2.X it can be hidden by setting your app to fullscreen. On Sat, Aug 13, 2011 at 10:49 PM, John j...@julientech.com wrote: In my program I need to know the location of the devices status bar. Normally I

Re: [android-developers] Status Bar Position

2011-08-13 Thread Dianne Hackborn
It is not nearly so simple. Honeycomb has a new UI element, a system bar, intended for tablet type devices which replaces the status bar. There is nothing that says a particular device will use this or a status bar, however, and certainly post honeycomb on phone devices you can expect to

[android-developers] Status bar area not covered when activity is resumed

2011-05-10 Thread groob
Hello! I'm experiencing very nasty bug trying to implement Admob in my application. I thought the problem is in my code, but after some investigation I found it present also in Android-Banner-Essentials example (available for download here:

[android-developers] Status Bar Notifications

2011-03-09 Thread Brad Stintson
How to create status bar notification which notifies me every day at 10 am? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email

Re: [android-developers] Status Bar Notifications

2011-03-09 Thread Kostya Vasilyev
09.03.2011 20:53, Brad Stintson пишет: How to create status bar notification which notifies me every day at 10 am? 1 - Use AlarmManager to schedule reliable, persistent (until reboot) alarms that trigger a BroadcastReceiver in your application.

Re: [android-developers] Status Bar Notifications

2011-03-09 Thread Brad Stintson
Can u please provide sample code? I am new to this. On Wed, Mar 9, 2011 at 11:31 PM, Kostya Vasilyev kmans...@gmail.com wrote: 09.03.2011 20:53, Brad Stintson пишет: How to create status bar notification which notifies me every day at 10 am? 1 - Use AlarmManager to schedule reliable,

Re: [android-developers] Status Bar Notifications

2011-03-09 Thread TreKing
On Wed, Mar 9, 2011 at 12:14 PM, Brad Stintson geek.bin...@gmail.comwrote: Can u please provide sample code? Can u please read the links Kostya provided and attempt to do something on your own? Or use Google, there are plenty of examples to be found in the documentation and internets.

Re: [android-developers] Status Bar Notifications

2011-03-09 Thread Kostya Vasilyev
Here is one example that does pretty much what you asked for: http://www.androidcompetencycenter.com/tag/alarmmanager/ -- Kostya 09.03.2011 21:14, Brad Stintson пишет: Can u please provide sample code? I am new to this. On Wed, Mar 9, 2011 at 11:31 PM, Kostya Vasilyev kmans...@gmail.com

Re: [android-developers] Status Bar Notifications

2011-03-09 Thread Kostya Vasilyev
09.03.2011 21:18, TreKing пишет: Can u please read the links Kostya provided and attempt to do something on your own? Thank you, Major, sir :) -- Kostya Vasilyev -- http://kmansoft.wordpress.com -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Status Bar appears again

2011-03-01 Thread argongold
Hi, I am developing a Home Screen and I have set the following attributes in AndroidManifest.xml android:theme=@android:style/Theme.Wallpaper.NoTitleBar.Fullscreen as well as in onCreate() function as // programatically setting the No Status Bar and Fullscreen for this application

[android-developers] Status bar icon sizes

2010-11-24 Thread Ievgenii Nazaruk
According to android icon design guidelines ( here http://developer.android.com/guide/practices/ui_guidelines/icon_design.html, see table #1), developer needs to provide status bar icons of next sizes: Status Bar 24 x 24 px (LDPI) 32 x 32 px (MDPI) 48 x 48 px (HDPI) While my measurements

[android-developers] Status bar style

2010-09-24 Thread stezak
Hi all, my application uses RemoteViews to create a custom status bar notification, containing, among others, a title and a small subtitle, similarly to all other standard notifications. I would like this title and subtitle to look exactely like all others in the notification list. Does anyone

[android-developers] Status bar leaves a black bar in my Fullscreen Activity !

2010-06-28 Thread MobDev
Hi, I have a Fulscreen Activity (by using android:theme=@android:style/ Theme.NoTitleBar.Fullscreen). I noticed that when the device has gone into powersave mode (black screen) or when I have used the Home Button, and I get back in my Activity the whole Layout will have been moved downwards

[android-developers] Status Bar Customizations

2010-04-01 Thread mssmison
I've seen this posted before however I'd really like to revisit it. In dealing with a small res device I would like to hide the status bar, my current solution has been to make it transparent and 'make a mess' of the framework and xml so that certain icons are no longer shown, for example the

[android-developers] Status bar notifications only for touch screens ?

2009-10-05 Thread Android Development
I was creating a status bar notification in my application. Once the notification was received, i had to drag the upper part of the screen to view it fully and then clicked on it. What if the phone does not have a touch screen ? How will the user bring the status bar notification's content into

[android-developers] Status bar in screen

2009-04-29 Thread Daniel Dreiberg
Hi, How can I find out the height of the status bar programatically? Thank you. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to