[android-developers] Re: Status bar

2016-05-01 Thread Osama
On Sunday, May 1, 2016 at 3:04:02 PM UTC+3, Osama wrote: > > Hi, > I need to make an APK file as it follows: > > 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 > > T

[android-developers] Re: status bar clock stops updating

2012-10-22 Thread Steve Delaney
OK, the problem is in the TI distro status bar stuck clock on TI Beagleboard build is fixed with this patch: http://e2e.ti.com/support/embedded/android/f/509/t/111012.aspx that modifies AlarmManagerService.java On Monday, October 22, 2012 11:57:08 AM UTC-7, Steve Delaney wrote: > > > Hi all

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

2012-08-09 Thread Pent
> According to the link you provided, this seems to be an issue with early > Android 4 versions. Hopefully, it will be fixed in Jelly Beans. Seems we > have to live with it until then. Seems OK on a Nexus S / 4.1.1. Pent -- You received this message because you are subscribed to the Google Grou

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

2012-08-09 Thread Terry
Thank you, Kostya, for a quick and very good answer. Yes, that is exactly what I am doing. According to the link you provided, this seems to be an issue with early Android 4 versions. Hopefully, it will be fixed in Jelly Beans. Seems we have to live with it until then. Terry -- You received

[android-developers] Re: Status Bar Position

2011-08-13 Thread John Julien
Thank you very much for the reply On Aug 13, 12:39 pm, Dianne Hackborn wrote: > 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 st

[android-developers] Re: Status Bar Notifications

2011-03-14 Thread roberto
Hi Brill, is your question about the BuzzBox SDK? It's a complete (but simple) solution if you want to add notifications to your App. The scheduler is the core. Then you can use the UI activity if you want to let your users to schedule the task. It depends of the use case. For example, if you want

[android-developers] Re: Status Bar Notifications

2011-03-13 Thread Brill Pappin
Why is the analytics library mixed up with a UI library like that? Sounds like a maintenance nightmare. - Brill Pappin -- 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.co

Re: [android-developers] Re: Status Bar Notifications

2011-03-12 Thread Brad Stintson
Finally, My alarm is working with notifications. :) Thanks all and special thanks to Kostya Vasilyev On Sat, Mar 12, 2011 at 1:42 ,AM, Kostya Vasilyev wrote: > 11.03.2011 23:10, Marcin Orlowski пишет: > > - Connect to your phone/emulator with "adb shell", use "dumpsys power" to >>> > chec

Re: [android-developers] Re: Status Bar Notifications

2011-03-11 Thread Kostya Vasilyev
11.03.2011 23:10, Marcin Orlowski пишет: - Connect to your phone/emulator with "adb shell", use "dumpsys power" to > check your alarm after it's been set. You probably meant "dumpsys alarm"? Yes, I did. Thanks. -- Kostya Vasilyev -- http://kmansoft.wordpress.com -- You received this message

Re: [android-developers] Re: Status Bar Notifications

2011-03-11 Thread Marcin Orlowski
> - Connect to your phone/emulator with "adb shell", use "dumpsys power" to > check your alarm after it's been set. You probably meant "dumpsys alarm"? -- Regards, Marcin Orlowski -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post t

Re: [android-developers] Re: Status Bar Notifications

2011-03-11 Thread Kostya Vasilyev
"All possible values in UTC time" - there are (2 << 63) - 1 of those, which is almost 10 ^ 19, so I don't see how you could have tried them all so fast :) Even without a wake lock, your receiver's onReceive should still be called (you do log that, right?). RTC_WAKEUP uses wall clock time in

Re: [android-developers] Re: Status Bar Notifications

2011-03-11 Thread Brad Stintson
For calendar values, i tried all possible values in UTC time as well as emulator time. Still it is not showing the notification. Is it related to WakeLock? If yes, then how to implement it? 2011/3/11 Kostya Vasilyev > Sounds like your Calendar-based time calculation is wrong (for the > origina

Re: [android-developers] Re: Status Bar Notifications

2011-03-11 Thread Brad Stintson
2011/3/11 Kostya Vasilyev > Before you look into using a WakeLock (which might not be necessary, since > Android keeps a wake lock for the duration of your onReceive)... > > There are a few things in your code that look rather strange to me: > > 1 - Your broadcast receiver is called Notification

Re: [android-developers] Re: Status Bar Notifications

2011-03-11 Thread Kostya Vasilyev
Sounds like your Calendar-based time calculation is wrong (for the original, non-repeating case). -- Kostya 11.03.2011 20:31, Brad Stintson пишет: Moreover, if i set reminder to current time using alarms.setRepeating(AlarmManager.ELAPSED_REALTIME, SystemClock.elapsedRealtime(),

Re: [android-developers] Re: Status Bar Notifications

2011-03-11 Thread Brad Stintson
Moreover, if i set reminder to current time using alarms.setRepeating(AlarmManager.ELAPSED_REALTIME, SystemClock.elapsedRealtime(), 30 * 1000, alarmIntent); then it is notifying perfectly. 2011/3/11 Brad Stintson > > > 2011/3/11 Kostya Vasilyev > > Before you look into

Re: [android-developers] Re: Status Bar Notifications

2011-03-11 Thread Kostya Vasilyev
Before you look into using a WakeLock (which might not be necessary, since Android keeps a wake lock for the duration of your onReceive)... There are a few things in your code that look rather strange to me: 1 - Your broadcast receiver is called Notification (bad name, btw, as it clashes with

Re: [android-developers] Re: Status Bar Notifications

2011-03-11 Thread Brad Stintson
How should I implement WakeLock in my above mentioned code? 2011/3/11 Jonathan Foley > > Is the device going to sleep? If so you'll need to acquire a WakeLock > otherwise it will wake up for the alarm and may fall back asleep > before the notification ever gets fired. > > > Jonathan > > On Mar

[android-developers] Re: Status Bar Notifications

2011-03-10 Thread Jonathan Foley
Is the device going to sleep? If so you'll need to acquire a WakeLock otherwise it will wake up for the alarm and may fall back asleep before the notification ever gets fired. Jonathan On Mar 10, 10:06 pm, Brad Stintson wrote: > *My application is not triggering notification at specified alarm

Re: [android-developers] Re: Status Bar Notifications

2011-03-10 Thread Brad Stintson
*My application is not triggering notification at specified alarm time. Please see below classes and tell me how to do that.* * * * * *This is my notification class.* public class Notificaition extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent)

Re: [android-developers] Re: Status Bar Notifications

2011-03-10 Thread Kostya Vasilyev
>From a database? Same as anything else, by using a query. Probably easiest to keep date/time values as a long integer (standard Unix representation). Once you have the time value, use AlarmManager and NotificationManager classes in Android. 10.03.2011 16:47 пользователь "Brad Stintson" написал:

Re: [android-developers] Re: Status Bar Notifications

2011-03-10 Thread Brad Stintson
How to get time from database n trigger notification on that time? On Thu, Mar 10, 2011 at 4:45 AM, roberto wrote: > > > On Mar 9, 11:41 am, Marcin Orlowski wrote: > > On 9 March 2011 19:59, roberto wrote: > > > > >http://hub.buzzbox.com/android-sdk/ > > > > Looks interesting but I personally

[android-developers] Re: Status Bar Notifications

2011-03-09 Thread roberto
On Mar 9, 11:41 am, Marcin Orlowski wrote: > On 9 March 2011 19:59, roberto wrote: > > >http://hub.buzzbox.com/android-sdk/ > > Looks interesting but I personally am not happy with it being closed > source (which I could stand) but integration with their analics. Who > knows what it analites wh

Re: [android-developers] Re: Status Bar Notifications

2011-03-09 Thread Marcin Orlowski
On 9 March 2011 19:59, roberto wrote: > http://hub.buzzbox.com/android-sdk/ Looks interesting but I personally am not happy with it being closed source (which I could stand) but integration with their analics. Who knows what it analites when your app got internet permission. But can be I am simp

[android-developers] Re: Status Bar Notifications

2011-03-09 Thread roberto
Hi Brad, you might want to consider using the BuzzBox SDK to do schedule a Task very quickly. You can use a cron string to schedule your task, in your case it would be: SchedulerManager.getInstance() .saveTask(this, "0 10 * * 1,2,3,4,5,6,7", YourTask.class); The BuzzBox SDK takes care of

Re: [android-developers] Re: Status Bar appears again

2011-03-01 Thread Justin Anderson
You should wait AT LEAST a day before bumping your post... On Tue, Mar 1, 2011 at 8:14 AM, argongold wrote: > Will any one give response from google android team? > > > On Mar 1, 5:09 pm, argongold wrote: > > Hi, > > > > I am developing a Home Screen and I have set the following attributes > >

Re: [android-developers] Re: Status Bar appears again

2011-03-01 Thread TreKing
On Tue, Mar 1, 2011 at 9:14 AM, argongold wrote: > Will any one give response from google android team? Please wait at least a few days for a response - particularly when you post in the middle of the night U.S. time.

[android-developers] Re: Status Bar appears again

2011-03-01 Thread argongold
Will any one give response from google android team? On Mar 1, 5:09 pm, argongold wrote: > 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() fu

[android-developers] Re: Status Bar Customizations

2010-04-02 Thread patbenatar
In your AndroidManifest.xml, within the tag for the activity you wish to have no title or status bar: android:theme="@android:style/Theme.NoTitleBar.Fullscreen" Should work like a charm :-) -Nick On Apr 1, 7:50 pm, mssmison wrote: > I've seen this posted before however I'd really like to r

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

2009-10-05 Thread Android Development
Ok. Thanks for the clarification. On Tue, Oct 6, 2009 at 11:41 AM, Dianne Hackborn wrote: > No. Android is currently not intended to work on a non-touch device. > Please don't add menu items for the notifications on the off-chance that you > will run on a non-touch device; if someone builds such

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

2009-10-05 Thread Dianne Hackborn
No. Android is currently not intended to work on a non-touch device. Please don't add menu items for the notifications on the off-chance that you will run on a non-touch device; if someone builds such a device (or the platform is updated to support them), then access to the status bar will be deal

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

2009-10-05 Thread Android Development
All right. Thanks for the replies. It would be nice if this is documented somewhere. Instead of navigating to Home -->Menu and then notifications, is it not possible to click on the Menu button in the current activity and then navigate to Notifications directly from the currently displayed activity

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

2009-10-05 Thread Romain Guy
It's possible to access the notifications without a touch screen though. Home > Menu > Notifications. On Mon, Oct 5, 2009 at 10:08 AM, Dianne Hackborn wrote: > Android currently requires a touch screen.  If someone makes a phone without > a touch screen, they can come up with whatever way they w

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

2009-10-05 Thread Dianne Hackborn
Android currently requires a touch screen. If someone makes a phone without a touch screen, they can come up with whatever way they want to get at the notifications. Either way, you can always get to them by going home and selecting notifications from the menu, though obviously this is less than

[android-developers] Re: Status bar in screen

2009-04-29 Thread Dianne Hackborn
Basically, you don't. Your content view will be resized for you to account for it. Also when you create windows they will be positioned below it, unless you specify the "layout in screen" flag. (Now that said, there is this little View.fitSystemWindows() method that gets called to help the view

[android-developers] Re: status bar

2008-04-01 Thread dr123
True but this isn't like an MDI form with children , or a webpage with frames. Anyway, thank's for the help it's the way i'll do it. On 31 Μαρ, 21:34, hackbod <[EMAIL PROTECTED]> wrote: > You could just have a a standard view showing this information, which > is included in the layout of each of

[android-developers] Re: status bar

2008-03-31 Thread hackbod
You could just have a a standard view showing this information, which is included in the layout of each of your activities. On Mar 31, 11:04 am, dr123 <[EMAIL PROTECTED]> wrote: > any idea how i can have a "permanent" view independent of activities > much lika a status bar on a windows program (n