Refers to PowerManager.WakeLock, a class from the Android SDK belonging to package android.os. Its responsibility is requesting CPU resources in the context of power management. If no wake locks are taken, Android will shut down the CPU.
0
votes
0answers
26 views
How WakeLock works in general? For me it does not work
Can anyone describe or point me to a good description to "how wakelock in android works"? You can forget android standard documentation for it.
I have a service (started as forground) and in the ...
0
votes
1answer
41 views
Wakelock alternative, right using - android
I using Wakelock in my Service, because the Service and the handy must working the whole time. It works very fine, but its drain the batterypower very fast.
Actually my code for the wakelock:
...
1
vote
1answer
28 views
Is wakelock static and if so, how do I manage multiple services/wakelocks in one application?
I have a situation where I have 3 services that do different things and all need wakelocks.
At the end of their execution I would like to release the wakelocks, however, I'm concerned that a given ...
0
votes
1answer
124 views
GCM Acquiring wakelock
I'm using GCM to send notifications, everything work correctly. I tried to create a GCM library, so I can integrate GCM in my future android apps easily. I created a project containing everything I ...
0
votes
1answer
41 views
Does using startForeground(int, Notification) in a Service acquire a WakeLock?
I'm having a hard time figuring out if I need to acquire a WakeLock if I'm also using startForeground().
0
votes
0answers
56 views
WakeLock acquire and Release logs
I want to write an appliaction/tool/utility/script etc. to monitor(log them somewhere/file/sdcard etc) the lock and release of all wake locks on my android device(JB). This utility/script etc should ...
1
vote
1answer
42 views
Extend screen wake duration using PowerManager.WakeLock
I am using PowerManager.WakeLock to wake my screen up when a notification appears...
PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
PowerManager.WakeLock wl = ...
1
vote
1answer
78 views
Should I call WakeLock before creating a notification?
I'm adding notifications to an Android app and only have the emulator to test with at the moment.
When a notification is received, my onMessage() method in my GCMBaseIntentService subclass ...
0
votes
1answer
39 views
Does Android have a means of storing an app's state to disk
I would like to perform a wakelock at certain time intervals in my app. It would be nice if Android could just store the entire state of my app to disk prior to the wakelock being released and then ...
0
votes
1answer
36 views
Calling WakefulIntentService.sendWakefulWork causes runtimeexception
When this code is run, it gives me a exception RuntimeException. I have yet to add any code to the WakeWork.class. Any thoughts on why this is bombing out?
THIS IS CALLED FROM MY 'ON RECEIVER' ...
0
votes
0answers
39 views
GPS not getting enabled after smartphone is in a long sleep
My app is designed to record a GPS location about once every 30 minutes. This is done as a background service and I also include a wake lock to keep the app running even when the screen goes off or ...
-1
votes
1answer
51 views
Keep screen on from a service
I would like to know how to keep the screen permanently on from a service. Here is the scenario for the code:
User plugs phone into power outlet,
Broadcast receiver gets event, start a service that ...
0
votes
2answers
108 views
Android: wake up device using Alarm
I'm using this this code for setting Alarm:
Intent intent = new Intent(context, Receiver.class); PendingIntent
pendingIntent = PendingIntent.getBroadcast(reminderContext, 0, intent,
...
0
votes
1answer
70 views
How to wake up android and show the activity?
Please, help me.
I have a broadcast reciever:
public class BrcRec extends BroadcastReceiver{
public static WakeLock wakeLock;
@Override
public void onReceive(Context context, Intent intent) {
...
2
votes
0answers
88 views
WakeLock under-locked GCM_LIB
My android app got crash report like below.(very rare)
java.lang.RuntimeException: WakeLock under-locked GCM_LIB
at android.os.PowerManager$WakeLock.release(PowerManager.java:325)
at ...
-2
votes
2answers
65 views
iOS: detecting inactivity or periodically launch an app
Is it possible to detect inactivty on iOS outside an application scope?
If not, is it possible to launch an app periodically even if in foreground? My objective is to play some videos in loop after ...
-1
votes
1answer
192 views
android turn screen off and on
I've made a simple application to turn the screen on and off once a button is pressed, the code does not present any error but it doesn't do anything. Here is the code:
protected void ...
1
vote
0answers
56 views
How mTorrent can download files without acquiring wakelock? [closed]
Recently I installed mTorrent mobile version on my GalaxyS III
It downloaded several big files while the device screen was turned off.
And when I checked if mTorrent acquired any wakelock to keep CPU ...
2
votes
1answer
137 views
AlarmManager awakes Activity from Sleep but the Activity Closes Undesirably
I have an AlarmManager setting an alarm:
Intent intent = new Intent(mContext, AwakeActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
PendingIntent pendingIntent = ...
1
vote
1answer
88 views
Save current battery level when locking screen not working
I'm trying to save the current battery level when the user presses the power button (--> screen off).
At first I'm having a broadcast receiver which starts whenever the phone boots. It's task is to ...
0
votes
1answer
169 views
WakeLock with PARTIAL_WAKE_LOCK is not working
I have an alarm application and was contacted by the user which reported that his alarms are sometimes delayed. I have tried different approaches and theories and finally suggested the user to use ...
0
votes
0answers
197 views
Light up screen when notification received. Windows Phone 8
I have a service running for my application to send notification every hour. This is working fine as i heard a sound and a vibration every hour because of my notification but i also want that my ...
0
votes
2answers
114 views
do I need a wake lock in my broadcastreceiver if I'm not starting a service or an activity?
I have a broadcastreceiver called by an Alarm (scheduled with AlarmManager). In this receiver I'm only querying a register from the database, and launching a notification. I readed that a wake lock is ...
0
votes
1answer
88 views
Activity start delayed (with WakeLock)
I have asked similar question before, but then problems were fixed after adding WakeLock. Some time have passed and problem has came back.
Background - it is an alarm application, with alarm Activity ...
0
votes
0answers
99 views
Android Vibrate with screen off
Considering the answers here and here are not providing an actual solution to the same problem and are more than a year old...
I have a Vibrator. I know how to fully control the vibrator.
I have the ...
0
votes
1answer
341 views
How does an Android device wake up
There are two ways that an Android device can go into "sleep" mode. One is just letting the screen time out and it shuts off automatically. In this case, it isn't clear whether the CPU is still ...
0
votes
0answers
58 views
Threads, delayed tasks VS android power usage
I need an advice on implementing power-efficient background client-server application for android.
So I would like to it be possible for device to enter sleep mode when it is running in the ...
1
vote
2answers
259 views
android - wakelock sleep confusion
I'm a tad confused as to what exactly happens to the device when a wake is called from alarmmanager. Does the phone screen come on/light up?
I'm thinking of having things run overnight and I think ...
1
vote
0answers
290 views
Android persistent socket connection rules
I have been doing some testing for a custom push notification solution for Android devices using persistent sockets. I would like to share my findings and validate the results.
Simple Description
The ...
0
votes
1answer
153 views
AlarmManager working well in emulator but not in real device
this is my code for setting alarm:
public void SetAlarm(Context context, int tag, long time){
AlarmManager am=(AlarmManager)context.getSystemService(Context.ALARM_SERVICE);
Intent i = new ...
0
votes
1answer
174 views
Battery performance using wakelocks
my app uses the commonsware wakeful pattern to wake the device up at a frequent (5 minute) repeating alarm interval. I know waking this frequently maybe the root of my problem, but the
actual work ...
0
votes
1answer
124 views
force close error on using wakelock
i've searched a lot for an answer to my problem but nothing seems to be working. i'm using the ACQUIRE_CAUSES_WAKEUP wakelock in my application. but whenever i run my code on the emulator as well as ...
0
votes
2answers
73 views
android - keeping a wake lock through an orientation change?
I'm trying to create an application that would stay awake as long as the user chooses it to - and it would even stay awake in the case of an orientation change.
Initially I did this by creating a ...
0
votes
1answer
97 views
Listening to signalStrength when phone sleeps
i've developed a broadcastreceiver that listen to the phone signal strength
declared in the manifest in this way
<receiver android:name="it.cazzeggio.android.PhoneStateListener" >
...
0
votes
0answers
144 views
force screen on from service android
I'm new in android world
I want force the screen to stay on during a call, so I've thinked to use a broadcast receiver. I see some examples, that use:
...
0
votes
0answers
395 views
wifiLock and wakeLock not working correctly on Android
I am developing an app that needs to use both wifiLock and wakeLock so the audio streaming when the screen is off does not get disturbed.
I have tried my app on Android 2.3 and wakeLock and looks like ...
0
votes
1answer
137 views
httpclient sleeps while executing
I am developing long running application, my application uses DefaultHttpClient (I also tried with AndroidHttpClient) periodically. I don't know but after working a while, somehow httpClient.execute ...
1
vote
1answer
517 views
Android - Wake Up and Unlock Device
I realize this question has been asked several times before, however we've been attempting to solve this problem for a while now and can't seem to figure out this one issue.
Application description:
...
0
votes
3answers
105 views
Why do WakefulIntentService check START_FLAG_REDELIVERY?
In WakefileIntentService.java from the CWAC Wakeful library the code contains:
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
PowerManager.WakeLock lock = ...
0
votes
1answer
110 views
The difference of wakelock core code and interfaces in kernel 3.0 from 3.7/3.8?
I was told that wakelock in kernel 3.7/3.8 is different from 3.0. What has changed and is there any document or discussion somewhere talking about this?
Thanks!
0
votes
0answers
143 views
Application crashes with wake lock and power manager
I create an application for use flash LED android as torch or as strobe light and add wake lock and power manager for not sleep.But when the user go to menu setup my apk crashed.Without wake lock work ...
0
votes
1answer
80 views
Set time for the screen to stay on
I already know where to begin, at least by WakeLock class, but I can only call methods on and off the screen ... I do not know the simplest way to terminate a while for the screen to begin start off ...
0
votes
1answer
186 views
Android WifiLock not working?
I need to pull data from a server on the local network every x minutes via WiFi and HTTP. A Service is running in the Background and I use an AlarmManager to trigger the query. Wifi Sleep Policy is ...
0
votes
1answer
484 views
Proximity sensor with wakelock issue: can't turn on screen again
I've been looking around for the last days and none of the answers to the questions made have helped me and I'm bumping my head with something that perhaps is simple to solve .... I want to work with ...
0
votes
1answer
75 views
Efficiency of regular wakeups (Alarms) vs. staying awake (WakeLocks)
I want to accept Bluetooth connections (even when the screen is off) for building a mobile ad-hoc P2P network. Since it seems that incoming connections don't wake the device up, I think I will either ...
1
vote
1answer
270 views
Allow screen to turn off for fullscreen android app
I have tried several published solutions to try and turn the screen off in android, including:
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
Which results in no change.
...
0
votes
0answers
71 views
Wake android device from terminal [closed]
Is it possible to wake an android device up from the terminal?
A vague guess is that I might be able to create an intent using am, which might be able to get a WakeLock object to run:
PowerManager ...
0
votes
2answers
203 views
Android wake lock is not released
I get the wake lock like in onCreate method and it works fine (I also set the permissions):
PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
PowerManager.WakeLock wl = ...
0
votes
0answers
137 views
Keep SensorEventListener during “standby”
I'm building an app that needs to listen to the accelerometer all the time, even when the application is not in foreground.
(At this point, I want to clarify that this is not an app for Play Store. ...
1
vote
2answers
483 views
Service, WakeLock
I am bit confused after going through the questions n answers in Stackoverflow about WakefulIntentService. I just would like to get some knowledge on this topics to make sure my understanding is ...

