Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
946 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
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
377 views

Android: Wake phone

I am trying to figure out how to wake and unlock the phone with a service. I have referencing this post but, I can't figure out why it isn't working. This is the code that I have so far: public ...
3
votes
1answer
501 views

How do I implement an Account on Android without a SyncAdapter

I am implementing a login system for an Android application utilizing the built-in accounts system (with the AccountManager APIs). All is well and good on Android 2.2+, but on Android 2.1 not ...
3
votes
2answers
800 views

Android - When using LocationManager.requestLocationUpdates, do I need a WakeLock?

My app periodically checks the location using an alarm to a BroastcastReceiver that starts a service. I know I should acquire a wakelock before I start the service but my question is when can I ...
2
votes
1answer
39 views

Check if onStop is called from user interaction, or screen dimming

I have a media player that stops playing whenever the user closes the app, either by pressing the home button, using the back button or simply opening another app. To get this behavior, I added an ...
2
votes
2answers
230 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
2answers
663 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
370 views

Acquiring PARTIAL_WAKELOCK every 10 seconds

Is there any problem with an application which acquires a partial wake lock at 10 second intervals. My use-case for this is being able to continually monitor the user's movement via the device ...
2
votes
0answers
861 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
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 ...
1
vote
1answer
77 views

Questions about Alarm Manager behavior and wakelocks

I'm using alarm manager in my service to set non-waking alarms every 15 seconds to execute a certain task. I don't want to wake the phone up as the task isn't time critical, so i'm using the ...
1
vote
1answer
226 views

WiFi lock doesn't work, how to prevent wifi power save?

I'm beginnig mad... I had done an app that transform the phone into a webcam (not pc but wheather webcam) and use the phone connection to send image to internet web space. I'm using ad activity ...
1
vote
1answer
150 views

Dose AlarmManager keep the Wifi awake or wakeLock needed?

I'm using the AlarmManger to schedule a keep alive timer to remote server, so every INTERVAL an UDP package are send to the server. Should i get a Wifi/CPU lock when the package sent or running on the ...
1
vote
1answer
316 views

AlarmManager's wake lock when starting a service

Android's AlarmManager Javadoc states When an alarm goes off, the Intent that had been registered for it is broadcast by the system, There is an AlarmService (package com.example.android.apis.app) ...
1
vote
1answer
94 views

Android - How can i write to file when the screen times out

We are writing an (industry specific) application that maintains it's own log file (I know we should use the android log, but for business purposes we need to maintain this log file in a very specific ...
1
vote
1answer
135 views

WakeLock-related Mandelbug: does WakeLock.acquire() always succeed?

The Problem I've been developing for Android for quite some time now. One of the programs I've developed makes heavy use of WakeLocks. It usually perfectly (often for days or weeks at a time, a ...
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? ...
0
votes
0answers
25 views

Android WAKE_LOCK permission rights

I use a wake lock pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, C2DM); in implementation of the C2DM service, and I use a <uses-permission android:name="android.permission.WAKE_LOCK" /> ...
0
votes
0answers
10 views

App Pauses when screen is dimmed

I'm dimming the screen, with the help of the proximity sensor. It dims, but it also makes the app pause and wont allow it to wake up without pressing the power button. I have a wake lock but that ...
0
votes
1answer
47 views

android app lock required for socket connection?

my app maintains a socket connection with a server through a Service I coded, but once the phone sleeps (a couple minutes after the screen turns off), I am unable to get the typical response from the ...
0
votes
1answer
32 views

Options for keeping device awake while a short-lived service runs

I'm developing an application that takes the user through an exercise plan. It's a running trainer that uses audio cues to let the user know when to walk, run, etc. at different points during their ...
0
votes
0answers
36 views

Android: Foreground service vs. wakeLock

I am relatively new to Android, so what I am asking may seem obvious (although I have read all the similarly titled questions, and have searched extensively). I need to monitor the accelerometer ...
0
votes
1answer
26 views

Android issues in wakelock?

Hai i developed a application using broadcast receiver.I need to wake my Application always.so i used wakelock.here my code PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE); ...
0
votes
2answers
100 views

WakeLock not releasing and Screen isn't turning off

I've using alarm manager to call an activity and I'm using the wake locker class onRecive() to wake the phone and then calling WakeLocker.release() after the Activity is over but the screen still ...
0
votes
1answer
35 views

Android device sleeping issue

I have a little issue when I set option for device not sleeping. I'm connecting to web server and downloading data and when I'm doing this I need the device stay awake. I'm using this in this way : ...
0
votes
0answers
78 views

Android alarm,Wake lock,,

I am using an alarm manager with a broadcast receiver and creating an activity when the alarm time fires up. Everything is fine when the phone is not locked and the display is ON.The Alarm Activity ...
0
votes
1answer
51 views

Programming powering off and powering on in one single OnClick function on android

I would like to write an activity that after clicking on a button turns off the screen and then turns it back on after 2 secs. I tried using the following code in order to power off the screen: ...
0
votes
1answer
115 views

Android, Does Wake Lock is active when In the hole of application?

I have some activities in my application. In main activity I have defined the wake lock: PowerManager powerManager = (PowerManager)getSystemService(Context.POWER_SERVICE); wakeLock = ...
0
votes
1answer
238 views

What happens to an Android service when PowerManager.goToSleep is called?

I'm trying to figure out what happens to an android service when PowerManager.goToSleep() is called. Say the device is asleep for x amount of time. When the device comes out of the sleep state, ...
0
votes
2answers
312 views

NotificationManager.notify() fails with SecurityException

When does NotificationManager.notify() require WAKE_LOCK permission on Android 2.2? I received following stack trace from one user: java.lang.SecurityException: Neither user ***** nor current ...
0
votes
2answers
527 views

Wake Lock in Samsung Galaxy Tab

I am developing an app in which i need to send and receive packets in background. But I've discovered that when screen shut off also cpu and networking is disabled. So I've found on Android Developers ...
0
votes
3answers
756 views

Android Service Listener for the wakelock screen

Hii all, Im developing an emergency calling application. What i want is when some person uses this specific code the phone will unlock and then only my application would be running. Im juz thinking i ...
0
votes
1answer
329 views

Do I need to hold a PARTIAL_WAKE_LOCK in the onReceive method for a CONNECTIVITY_ACTION broadcast?

I have a Service that listens to network connectivity changes using the ConnectivityManager.CONNECTIVITY_ACTION intent filter. Should I acquire a partial cpu lock at the beginning of my onReceive ...
0
votes
1answer
184 views

Not able to write to SDCard while screen is off even though I have PARTIAL_WAKE_LOCK

I'm totally new to Java and Android, so I think I'm probably missing something obvious. I'm writing an app where I sample the orientation sensor and write the result to a file on the SDCard as well as ...
0
votes
1answer
501 views

Wakelock Reference Count

Can anyone explain what this method of PowerManager.Wakelock is for? setReferenceCounted "Wake locks are reference counted by default." - why?
0
votes
2answers
542 views

SMS gateway how to program android app

I want to make a SMS gateway app, that polls my website and checks if there are messages to send in the queue, and if there is, the app will send it to the destination number. There should also be a ...
0
votes
1answer
404 views

How do you safely implement WakeLock across multiple activites

I wish to provide the users of my application the ability to keep the screen on using a WakeLock. In my main activity I have created the following function: protected void processWakeLock(int ...
0
votes
1answer
380 views

Read sensors while screen is black

Hi here there is a interesting problem! I have this service: public class SensorService extends Service implements SensorEventListener { private static final String TAG = "MyService"; private ...
-1
votes
3answers
110 views

Android app lifetime: maybe it infinite?

I'm developing an app designed to transform an android phone into a remote device running without user action. At the time the app is made by an Activity that sets AlarmManager to execute a service ...
-2
votes
1answer
198 views

Android - Unlocking phone with voice [closed]

Is it possible to unlock phone with voice command, even when device is in PowerManager.WakeLock mode?I thought of using Service as background process but can phone device react when locked?Any ideas? ...