Tagged Questions

The Android Operating System uses its own power management scheme, built on top of the standard Linux one. Since it's mobile-oriented, one of its main goals is to avoid wasting CPU cycles (i.e. power) if no application is running. That's why every application must request CPU resources, using wake ...

learn more… | top users | synonyms

8
votes
2answers
180 views

Keep a Service running even when phone is asleep?

I have a Service in my application which is designed to run every 10 minutes. It basically checks up on our servers to see if everything is running properly and notifies the user of any problems. I ...
8
votes
2answers
949 views

Does the Android OS release a wakelock if the app or service holding it is killed?

I have question about wakelock. In cases shown below, does android OS release wakelock (PARTIAL_WAKE_LOCK if you need to specify) to prevent wakelock was left acquired and wasting battery until ...
5
votes
2answers
317 views

Android: Keep camera-LED on after screen turns off

since i'm at the beginning with Android coding i hesitated to post my question, but now i'm at the point where i can't resist. I have a service which turns on the camera-LED onCreate: @Override ...
5
votes
2answers
1k views

Turn off screen on Android

I am trying to turn on and off the display after a certain action happens (Lets just worry about turning the screen off for now). From what I understand from wake lock, this is what I have: ...
3
votes
2answers
2k views

How can I see which wakelocks are active

For some reason my Android phone won't go to sleep. I assume that a wakelock is keeping it awake, but there is no way to tell which wakelocks are active. The running services doesn't list anything ...
3
votes
2answers
1k views

Beginner questions: Wakelocks

I am new to the notion of WakeLock and need your help. Questions: I assume WakeLock to be some type of lock which when held by the executing code prevents the device from sleeping. What if the ...
2
votes
3answers
128 views

Detect when an application is keeping the screen on

I'm writing an Android app that mostly communicates with the user via status bar notifications. However, I would like to not bother the user if s/he is not really directly interacting with their ...
2
votes
1answer
469 views

Android internet connection problem on sleep mode?

I have a service Activity and a thread in it. Problem is when phone go to sleep mode, thread doesnt send http request And i check the network state if it is not connect i work to connect it but i get ...
2
votes
2answers
231 views

Android: wake lock: is lock released on application paused?

I have to use the wakelock (yes I shouldn't for the obvious reasons but I'm being paid to do it so I don't have a choice lol) my question is very simple: when I leave the app onPause or onStop, is ...
2
votes
5answers
639 views

Using WakeLock to Keep A Stream Playing

I have a MediaPlayer running in a Service that's playing audio from a URL (streaming). As of now it appears to work well, and even continues playing when I put the phone in standby. I currently do ...
2
votes
2answers
666 views

Activate Android with touch instead of power button

We've got a tablet application for which we want to screen to timeout after a certain period, but would like the user to re-enable it by touching the screen instead of the 'power'-button on the side ...
2
votes
1answer
151 views

Do I need to obtain a WakeLock if I don't create threads?

I'm creating a Service that will be set up to start using the AlarmManager (using ELAPSED_REALTIME_WAKEUP). I do all my processing inside the onStartCommand method mainly because: It doesn't take ...
2
votes
1answer
466 views

Should I use WakeLock in IntentService?

Suppose I use BroadcastReceiver to receive events(intents) that awake the phone even if it is in deep sleep mode (such as incoming data packet on a socket, or incoming text message). Then I forward ...
2
votes
0answers
864 views

What events can wake up a sleeping Android device?

I am writing a Android client app which keeps receiving push notifications from a server using HTTP long-polling(Comet). I don't want to always keep WakeLock since it will drain battery, but I need ...
2
votes
3answers
2k views

Android - How can I wake up the phone from a hard sleep to take a picture?

I want to take pictures from the Android device's camera periodically over a matter of hours, to create a time lapse video effect. I set an Alarm Manager with an AlarmManager.RTC_WAKEUP flag set to ...
2
votes
1answer
775 views

PARTIAL_WAKE_LOCK vs SCREEN_DIM_WAKE_LOCK in download thread

I have a service that spawns a download thread that downloads sometimes large files. I realized that as soon as the phone went to sleep, the download thread would slow down significantly, then stop. ...
2
votes
2answers
2k views

Android - Wake lock not acquiring properly, app needs to keep running in standby

In my app, in the onCreate() method of the main activity I am creating a wake lock so that the CPU will keep running if the phone goes on standb/screen turns off. Also in the onCreate method I have ...
2
votes
2answers
1k views

Android: dim screen while user inactive

I have an app which is used for lets say 4 hours, but only every 5 minutes a user needs to make an input or read the screen. Putting the phone to sleep and locking the screen is a bit annoying. So I ...
2
votes
0answers
423 views

Develop Alarm Application

I'd like develop an Alarm Application. The application should work like this: launch it the activity show me the time I can set the alarm I can close the application when the alarm time comes , it ...
1
vote
0answers
13 views

Wakelock CPU speed

My app holds a partial wakelock (to ensure the CPU keeps running) and also uses a proximity wake lock to turn the screen off if the user holds the phone near their face. The app plays audio to the ...
1
vote
1answer
48 views

GPS Tracking App (strategy)

I am currently working on a GPS tracking App (only the distance, not storing each value or displaying in a MapView) for a car-drivers logbook. Cause of a docked phone, I do not care about power ...
1
vote
1answer
26 views

Service pauses on screen lock

For testing purposes i have made a service that beeps every 1 minute. (No client-server interface yet). It beeps okay when the screen in on, but when it goes to sleep the beeping stops. I am making ...
1
vote
1answer
74 views

Wake up screen and show dialog on Lock Screen

I have an alarm scheduled. Using WakeLock.acquire() and KeyguardLock.disableKeyguard(), I am able to wake the screen up and show my activity. However, I'd prefer to just show a dialog. The built in ...
1
vote
1answer
34 views

Android: How to wake WIFI (or 3G) from AlarmManager?

I have this application that needs to pull data from a server every 30 minutes, after a lot of search I reached this solution: 1- using AlarmManager to notify the application each 30 minutes instead ...
1
vote
2answers
55 views

Get notified when some other application acquires wake lock

I am wondering if the following is possible in android. I want to have my application do a certain task whenever the phone get awoken. Whenever some other application acquires a wake lock to do it's ...
1
vote
2answers
456 views

Android GPS tracking and WakeLock

I need to do background GPS tracking on an Android phone, and I'm currently planning on having two scenarios: When the phone is connected to a (car) charger, get frequent GPS locations (every ...
1
vote
2answers
541 views

Correct pattern to acquire a WakeLock in a BroadcastReceiver and release it in a Service

Even after a lot of research I am still not completely sure if the way how I implement a WakeLock for a Service started by a BroadcastReceiver is correct - even though it seems to work fine. The ...
1
vote
0answers
263 views

Service and Wake Lock Policy

As stated by the AlarmManager docs: http://developer.android.com/reference/android/app/AlarmManager.html#RTC_WAKEUP This means that the phone will in some cases sleep as soon as your onReceive() ...
1
vote
3answers
681 views

Wake the device up when app prompts user

I'm using handler to repeatedly prompt user for an input every e.g. 5 minutes. When the device goes into sleeping mode and screen is locked, how can I wake the device up when my app prompts user for ...
1
vote
1answer
400 views

Implementing a WakefulIntentService

I am trying to implement a WakefulIntentService using the CommonsWare example. I need to pass a Location to the subclass of the WakefulIntentService, but I haven't been able to do that. I call ...
1
vote
5answers
618 views

Help with PROXIMITY_SCREEN_OFF_WAKE_LOCK in Android

I've enabled the proximity wakelock in my app, and it turns off the screen when the proximity sensor detects something. But there is a problem when the screen wakes back up -- it goes to the ...
1
vote
1answer
333 views

Keep handler and service alive while waiting for response from separate thread?

I'm using a repeating alarm to trigger a BroadcastReceiver (OnAlarmReceiver) which in turn calls WakefulIntentService.sendWakefulWork(context, PmNotificationService.class); The doWakefulWork method ...
1
vote
2answers
544 views

WakeLock finalized while still held

The pm and keepScreenOn variables are globally defined. I grab the PowerManager.WakeLock in my OnCreate method: pm = (PowerManager) getSystemService(Context.POWER_SERVICE); keepScreenOn = ...
1
vote
1answer
804 views

BroadcastReceiver, Service and Wakelock

im receiving an intent in broadcast receiver and then i start service to do more work. now what if the device is sleep and this happen, do i have to get Wakelock (AlarmManger?), and why do i need it? ...
1
vote
1answer
185 views

Android service with long living HttpConnection

I am tring to develop a project that connects to a comet server with long living connections. i do this job in a service. But when android device goes to idle mode, the thread i started from ...
1
vote
2answers
2k views

AlarmManager and WakeLock

I want to use an alarm manager in my activity. I set up an alarm at the onPause method of main activity like this, Intent intent= new Intent(namaz_vakti_activity.this, namaz_vakti_activity.class); ...
1
vote
3answers
2k views

Wake locks android service recurring

I have this application that needs to run a service (background) that beeps periodically. The phone needs to beep the entire day for 5 seconds every one minute (used a handler in the service). I have ...
1
vote
3answers
775 views

How to release a wake lock?

I am setting a wake lock using wl.acquire(). This works fine. I need that wake lock as long as my application lives, so calling release() can only be done when the application is left. Do I have to ...
0
votes
1answer
45 views

How to turn wakelock off?

I'm tryng to turn proximitywakelock on when portrait and off when landscape using this code, but it always stays active: //in onCreate() of my Activity PowerManager pm = (PowerManager) ...
0
votes
1answer
22 views

Android: MediaPlayer and AsyncTask Wakelock

I have an Activity that uses AsnycTasks to reset and restart a MediaPlayer after it finishes. This all works fine, but I want the MediaPlayer to continue playback even when the phone's screen is off. ...
0
votes
0answers
13 views

Receiving CONNECTIVITY_ACTION intent when phone is sleep

I'm not sure if this behavior is correct, but my service's broadcast receiver is not receiving CONNECTIVITY_ACTION intents when the phone is sleep. I need to execute a task when the wireless ...
0
votes
1answer
45 views

Android MediaPlayer WakeLock not Working

I've made a basic radio player, the code that makes it play is below and works perfectly except for the setWakeMode method. When I turn my phone onto standby, the audio will play well for up to 2 ...
0
votes
1answer
41 views

Does a Thread running from a service with wakelock require wakelock?

I want to run a thread to do some work in the background (from a service that acquired a wakelock). after my thread finish work then it will stop the service. My concerns are : 1- Do i need to ...
0
votes
2answers
96 views

Partial wake lock is not working

My application is having activities and background service which has to run 24*7, My application has to talk to the server via Wi-Fi to send and receive the information. Problem: whenever any alarm ...
0
votes
0answers
47 views

wakelock cyanogenmod 9 4.0.3

i'm using a FULL_WAKE_LOCK with ACQUIRE_CAUSES_WAKEUP, but it does not work? It does not turn on the screen. it worked properly on cm7(android 2.3.7), but not on cm9 (android 4.0.3) did anybody get ...
0
votes
0answers
24 views

Android - Maintaining BroadcastReceiver untill Service is finished

The code runs as it should in the simulator and on the phone when its plugged in, but as soon as I unplug the cable my service runs intermittently. I have read quite a bit about the problem and from ...
0
votes
2answers
58 views

How would you unit test an Android app that needs to go into sleep mode, come out, and record results?

I know this seems like an odd question, but I need to : grab info before sleep sleep do tasks wake up get assert results What I have tried is to enable the sleep in the set up portion of the test, ...
0
votes
1answer
122 views

Android - How to wake up wifi?

I have an app that sends data every 5 min, i saw that wifi after some time goes sleep and stop working. I found one solution that is use a WakeLock SCREEN_DIM_WAKE_LOCK. The thing is: i can't have ...
0
votes
1answer
123 views

Show notification Alarm Manager / Wake Lock / Sleep (local notification in Android)

I want to display a notification / alarm with the terminal in "sleep mode / standby". As does WhatsApp, Handcensms ... Or the simple alarm clock. For example, in IOS is called "local notification" ...
0
votes
1answer
102 views

Android PowerManager and Wakelock, help me understand

so I am looking into PowerManager to prevent phone from going to sleep. Two questions: 1) My phone is currently set to turn the display off after X seconds, will the PowerManager.Wakelock functions ...

1 2