alarmmanager
android service questions
I read this http://developer.android.com/guide/topics/fundamentals/services.html and there it say the lifecylce of the service depends on how I started it either via onStartCommand() and the service r[详细]
2023-02-20 20:57 分类:问答android: simple alarm clock
I\'m writing simple alarm clock. It contains MainActivity with a ListView, WakeActivity with wake up message and a PlayerService that plays sound. I use the following code to set alarm clock:[详细]
2023-02-20 16:35 分类:问答Android Notification problem
I have created a Alarm using AlarmManager. Intent intent = new Intent(MyApp.this,NotificationMessage.class);[详细]
2023-02-19 04:36 分类:问答Best moment/location for setting an AlarmManager
My application shows content for a site that also has a notification system. I want to show if there are new notifications, and I am using an AlarmManager that calls an IntentService.[详细]
2023-02-16 23:03 分类:问答Listing all PendingIntents from AlarmManager [duplicate]
This question already has answers here: Closed 10 years ago. Po开发者_运维百科ssible Duplicate: Android: Get all PendingIntents set with AlarmManager[详细]
2023-02-16 21:17 分类:问答Can I wake up my Android when it is unplugged and sleeping?
I have made an app that allows one to listen to the radio and have implemented an alarm so that I can have the radio play when the alarm goes off. I am using the alarmManager and RTC_开发者_开发技巧wa[详细]
2023-02-16 14:21 分类:问答AlarmManagerIntent doesn't get called
I want to use the AlarmManager to call a BroadcastReciever: Context ctx=getApplicationContext(); Intent StartIntent = new Intent(ctx, tartReceiver.class);[详细]
2023-02-16 11:27 分类:问答Android - Find out what hour of day it is
I want to use and alarmManager that sets a repeating alarm to go off on the hour, every hour. I know how to set a repeating alarm every hour but not how to actually set it from the top of the hour, I[详细]
2023-02-15 03:46 分类:问答Launch app at a user specified time?
I have an app that plays radio stations, and I now want to integrate an alarm clock such that it plays a radio station when the alarm goes off. I have been looking into the Alarm Manager, which seems[详细]
2023-02-14 17:26 分类:问答android remote process(receiver) dies quickly
i am trying to run a cpu intense task every 60 seconds. i am using AlarmManager with a PendingIntent,`[详细]
2023-02-14 08:05 分类:问答