Fixed
Status Update
Comments
ja...@gmail.com <ja...@gmail.com> #2
Here's a code snippet that readily demonstrates the problem. Note that on some
devices, while plugged in they continue to work in standby, so untethering the device
may be necessary.
packagetest.com ;
import android.app.Activity;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.os.IBinder;
public class acceltest extends Activity
{
static Context ctxt = null;
Intent svcIntent = null;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
ctxt = this;
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
svcIntent = new Intent (this, MovementListener.class);
startService (svcIntent);
}
static public class MovementListener extends Service implements
SensorEventListener
{
MediaPlayer a = null;
@Override
public void onCreate()
{
SensorManager sm = (SensorManager)getSystemService
(SENSOR_SERVICE);
sm.registerListener (this, sm.getDefaultSensor
(Sensor.TYPE_ACCELEROMETER), SensorManager.SENSOR_DELAY_NORMAL);
super.onCreate();
}
@Override
public void onAccuracyChanged(Sensor arg0, int arg1) {
// TODO Auto-generated method stub
}
@Override
public void onDestroy()
{
SensorManager sm = (SensorManager)getSystemService
(SENSOR_SERVICE);
sm.unregisterListener(this);
if (a != null) a.release();
super.onDestroy();
}
@Override
public void onSensorChanged(SensorEvent event)
{
if (a != null) a.release();
a = MediaPlayer.create (ctxt, R.raw.triangle);
a.seekTo(a.getDuration()/3);
a.start();
}
@Override
public IBinder onBind(Intent arg0)
{
// TODO Auto-generated method stub
return null;
}
}
}
devices, while plugged in they continue to work in standby, so untethering the device
may be necessary.
package
import android.app.Activity;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.os.IBinder;
public class acceltest extends Activity
{
static Context ctxt = null;
Intent svcIntent = null;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
ctxt = this;
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
svcIntent = new Intent (this, MovementListener.class);
startService (svcIntent);
}
static public class MovementListener extends Service implements
SensorEventListener
{
MediaPlayer a = null;
@Override
public void onCreate()
{
SensorManager sm = (SensorManager)getSystemService
(SENSOR_SERVICE);
sm.registerListener (this, sm.getDefaultSensor
(Sensor.TYPE_ACCELEROMETER), SensorManager.SENSOR_DELAY_NORMAL);
super.onCreate();
}
@Override
public void onAccuracyChanged(Sensor arg0, int arg1) {
// TODO Auto-generated method stub
}
@Override
public void onDestroy()
{
SensorManager sm = (SensorManager)getSystemService
(SENSOR_SERVICE);
sm.unregisterListener(this);
if (a != null) a.release();
super.onDestroy();
}
@Override
public void onSensorChanged(SensorEvent event)
{
if (a != null) a.release();
a = MediaPlayer.create (ctxt, R.raw.triangle);
a.seekTo(a.getDuration()/3);
a.start();
}
@Override
public IBinder onBind(Intent arg0)
{
// TODO Auto-generated method stub
return null;
}
}
}
ja...@gmail.com <ja...@gmail.com> #4
After discussion in the above mentioned thread, I think there are two potential
issues here:
1. If we're to assume the correct way forward is to use a wakelock, on the HTC Hero a
partial wakelock does not seem to wake the device enough to get the
OnSensorChanged()'s through. On G1 and Magic, it does. This is a big problem to
apps like mine (and others in the thread).
2. It seems (in contrast) GPS location changes do get through without a wakelock. Is
this because we have to set parameters for how often/far and therefore it is a less
frequent event to wake the device for? If so, could the Sensor API do similar, ie
have a register parameter for how much movement before a series of OnSensorChanged()
are called and the device woken to accept them? It seems to me that this would be
the optimal solution to give the best potential battery performance under the
circumstances where sensor messages are required at all times (ie. where the device
is expected to be motionless most of the time, only waking if moved). As the Sensor
messages HAVE got through in standby previously for all current devices, could we
have this functionality as a compromise?
issues here:
1. If we're to assume the correct way forward is to use a wakelock, on the HTC Hero a
partial wakelock does not seem to wake the device enough to get the
OnSensorChanged()'s through. On G1 and Magic, it does. This is a big problem to
apps like mine (and others in the thread).
2. It seems (in contrast) GPS location changes do get through without a wakelock. Is
this because we have to set parameters for how often/far and therefore it is a less
frequent event to wake the device for? If so, could the Sensor API do similar, ie
have a register parameter for how much movement before a series of OnSensorChanged()
are called and the device woken to accept them? It seems to me that this would be
the optimal solution to give the best potential battery performance under the
circumstances where sensor messages are required at all times (ie. where the device
is expected to be motionless most of the time, only waking if moved). As the Sensor
messages HAVE got through in standby previously for all current devices, could we
have this functionality as a compromise?
ja...@gmail.com <ja...@gmail.com> #5
I notice this has not been assigned an owner - I wonder if someone can comment on when
this will be fixed? Thank you.
this will be fixed? Thank you.
a....@gmail.com <a....@gmail.com> #6
This issue does really annoy users of Smart Alarm Clock or similar applications.
It also reported to be seen on Droid.
Well, I'm starting to advertise this issue in this applcation (currently 5000
installations from market). So, if 10% percents will vote a star, it will gain
significant momentum to be fixed soon.
I hope so =)
It also reported to be seen on Droid.
Well, I'm starting to advertise this issue in this applcation (currently 5000
installations from market). So, if 10% percents will vote a star, it will gain
significant momentum to be fixed soon.
I hope so =)
a....@gmail.com <a....@gmail.com> #7
Just for search results:
- accelerometer stops the data if screen goes off
- g-sensor not working while display is off
- cpu wake lock doesn't enable accelerometer on Hero or Droid
- partial wakelock (wake lock) not helps
- accelerometer stops the data if screen goes off
- g-sensor not working while display is off
- cpu wake lock doesn't enable accelerometer on Hero or Droid
- partial wakelock (wake lock) not helps
jo...@gmail.com <jo...@gmail.com> #8
This is a urgent issue for always-sensing based applications.
I could not understand why they removed this function.
If it was for energy consumption problem, they could provide other option, for
example, SENSOR_LOCK, but they just remove it !
Google wants to have always-sensing applications all to themselves ?
How do you think ? Why Google eliminates this function ?
I could not understand why they removed this function.
If it was for energy consumption problem, they could provide other option, for
example, SENSOR_LOCK, but they just remove it !
Google wants to have always-sensing applications all to themselves ?
How do you think ? Why Google eliminates this function ?
a....@gmail.com <a....@gmail.com> #9
Oh, I don't think that it was intentional.
This is just a bug, not a feature. Who does really need a navigation software while
screen is off?
Ask your users to vote for this bug!
This is just a bug, not a feature. Who does really need a navigation software while
screen is off?
Ask your users to vote for this bug!
a....@gmail.com <a....@gmail.com> #10
My website collects hardware tests from the application:
- From 9 Hero200 devices 2 are working great, and 3 works a little ('Game' frequency
is 3 Hz instead of 20 while screen is on)
- None of 20 HTC Hero works at all - accelerometer doesn't work while screen is off.
- Only 4 of 29 HTC Eris works.
- Samsung SPH-M900 records are unstable, 50/50.
Other devices work great.
Please let me know if you need access to these anonymous statistics (including
complete hardware information).
- From 9 Hero200 devices 2 are working great, and 3 works a little ('Game' frequency
is 3 Hz instead of 20 while screen is on)
- None of 20 HTC Hero works at all - accelerometer doesn't work while screen is off.
- Only 4 of 29 HTC Eris works.
- Samsung SPH-M900 records are unstable, 50/50.
Other devices work great.
Please let me know if you need access to these anonymous statistics (including
complete hardware information).
yu...@gmail.com <yu...@gmail.com> #11
Motorola Droid is working, at least I got one tester with positive feedback (no
reports about broken Droid support, so no comments about this).
reports about broken Droid support, so no comments about this).
jo...@gmail.com <jo...@gmail.com> #12
My devices are HTC Hero, so I thought that this was not a bug, it's my mistake.
(Google, I sincerely apologize.)
I borrowed android phones from other teams, and tested follow devices.
2 HTC G1(SDK 1.6) work great.
2 Motorola Cliq(SDK 1.5) work great.
3 HTC Hero does not work.
I really like HTC Hero because of its UI and design.
But..... I think I will dislike Hero.
Please fix it !
(Google, I sincerely apologize.)
I borrowed android phones from other teams, and tested follow devices.
2 HTC G1(SDK 1.6) work great.
2 Motorola Cliq(SDK 1.5) work great.
3 HTC Hero does not work.
I really like HTC Hero because of its UI and design.
But..... I think I will dislike Hero.
Please fix it !
ti...@gmail.com <ti...@gmail.com> #13
This issue also affects the application ShakeIt (http://www.androlib.com/android.application.com-androood-
shakeitdonate-xAmj.aspx), which enables speakerphone when you flip the phone upside down. As soon as the
screen turns off (10 seconds or so), the speakerphone is disabled (even if the call is still in progress).
shakeitdonate-xAmj.aspx), which enables speakerphone when you flip the phone upside down. As soon as the
screen turns off (10 seconds or so), the speakerphone is disabled (even if the call is still in progress).
st...@gmail.com <st...@gmail.com> #14
[Comment deleted]
an...@gmail.com <an...@gmail.com> #15
I think maybe we should try HTC's customer support,
maybe they done this by purpose,
here is the report url
http://www.htc.com/www/CS_Mail.aspx
maybe they done this by purpose,
here is the report url
sb...@gmail.com <sb...@gmail.com> #16
Worked on my Droid fine for about a week until the new OS download now it doesn't
work. This was my favorite Alarm clock cause it really worked. Google please fix the
problem.
work. This was my favorite Alarm clock cause it really worked. Google please fix the
problem.
mi...@googlemail.com <mi...@googlemail.com> #17
I'm working on an app that crucially relies on accelerometer readings during standby,
so this issue is a big problem for me too. Hope to have it resolved soon!
so this issue is a big problem for me too. Hope to have it resolved soon!
pa...@gmail.com <pa...@gmail.com> #18
Looks like I have the same problem with my Motorola Milestone. It can only track
movements while the screen is on. But as soon as the screen turns off: nothing.
movements while the screen is on. But as soon as the screen turns off: nothing.
mi...@googlemail.com <mi...@googlemail.com> #19
[Comment deleted]
ti...@gmail.com <ti...@gmail.com> #20
stefan.van.essen,
Are you sure this issue has been fixed in Eclair? How do you know it is going to be
fixed when Eclair is released?
Are you sure this issue has been fixed in Eclair? How do you know it is going to be
fixed when Eclair is released?
mi...@googlemail.com <mi...@googlemail.com> #21
I would also be very keen to know whether this issue is officially a bug. If not, I
will have to terminate my current development project.
will have to terminate my current development project.
pa...@gmail.com <pa...@gmail.com> #22
The milestone ships with eclair, and for me it is not working - so I assume it is not
fixed in Eclair.
fixed in Eclair.
ma...@gmail.com <ma...@gmail.com> #23
Not working here either, I need it as well for some logging tool.
Please fix, or at least give some info if this is being worked on.
Please fix, or at least give some info if this is being worked on.
ti...@gmail.com <ti...@gmail.com> #24
There's something I still don't understand. If this is an Android issue, why do some Android phones do not show
this problem? According to the Smart Alarm Clock website, T-Mobile G1, Motorola Milestone and Samsung
Galaxy work fine (although paul.dubs reports the opposite for the Milestone). Shouldn't all Android phones be
affected?
this problem? According to the Smart Alarm Clock website, T-Mobile G1, Motorola Milestone and Samsung
Galaxy work fine (although paul.dubs reports the opposite for the Milestone). Shouldn't all Android phones be
affected?
to...@gmail.com <to...@gmail.com> #25
Just confirmed it too!
Please fix asap.
Please fix asap.
de...@gmail.com <de...@gmail.com> #26
Please fix it...
tu...@gmail.com <tu...@gmail.com> #27
anybody know if it works on a htc tatoo?
je...@gmail.com <je...@gmail.com> #28
Would be great if this can be fixed so that applications like smart alarm clock will work on HTC hero
jo...@gmail.com <jo...@gmail.com> #29
yea someone please try to fix this! man awesome apps depends on this function!
ar...@gmail.com <ar...@gmail.com> #30
Please fix this for the htc hero!!
ar...@gmail.com <ar...@gmail.com> #31
Please fix this for the htc hero!!
I can not use some apps.....
I can not use some apps.....
kr...@gmail.com <kr...@gmail.com> #32
Same problem on verizons motorolia droid.
os...@gmail.com <os...@gmail.com> #33
This bug really needs a fix!
co...@gmail.com <co...@gmail.com> #34
This app worked perfectly on my droid for about a week. Google please fix this problem.
al...@gmail.com <al...@gmail.com> #35
fix it plz.
ma...@gmail.com <ma...@gmail.com> #36
Htc hero user
Please fix this. Looks like a lot of users need this me included thank you
Please fix this. Looks like a lot of users need this me included thank you
a....@gmail.com <a....@gmail.com> #37
AAAA!!!
Automatic data collection from Smart Alam Clock shows that Nexus One is also have a
bug!
GOOGLE!! Your OWN phone violates your own specifications!
device: passion
model: Nexus One
firmware: Android 2.1
board: mahimahi
build: ERD79
product: passion
version: ERD79
incremental: 22607
reported 5 times as not working
build: passion-userdebug 36903751.1 ERD72 22132 test-keys, incemental 22132, 21364
reported 5 times as not working
build: ERD78, incremental 22525 - WORKS OKAY!!!! Accelerometer works at 9 Hz while
the screen is off.
Guys, you have a working bugfix! Please find the difference and fix other build.
I hope you could.
Automatic data collection from Smart Alam Clock shows that Nexus One is also have a
bug!
GOOGLE!! Your OWN phone violates your own specifications!
device: passion
model: Nexus One
firmware: Android 2.1
board: mahimahi
build: ERD79
product: passion
version: ERD79
incremental: 22607
reported 5 times as not working
build: passion-userdebug 36903751.1 ERD72 22132 test-keys, incemental 22132, 21364
reported 5 times as not working
build: ERD78, incremental 22525 - WORKS OKAY!!!! Accelerometer works at 9 Hz while
the screen is off.
Guys, you have a working bugfix! Please find the difference and fix other build.
I hope you could.
ja...@gmail.com <ja...@gmail.com> #38
*
de...@gmail.com <de...@gmail.com> #39
Needs fix.
br...@gmail.com <br...@gmail.com> #40
I just published an application that uses the orientation sensor and this also does
not work in standby mode (no sensor updates) on my Motorola Milestone. It would be
great if this could be solved.
not work in standby mode (no sensor updates) on my Motorola Milestone. It would be
great if this could be solved.
di...@gmail.com <di...@gmail.com> #41
Will turning screening app help this
di...@gmail.com <di...@gmail.com> #42
Will turning screening app help this
di...@gmail.com <di...@gmail.com> #43
Will screening app help
ma...@gmail.com <ma...@gmail.com> #44
G1 version 1.6 (donut). Same issue using CardioTrainer market application from WorkSmart Labs.
Thanks
Thanks
br...@gmail.com <br...@gmail.com> #45
After some investigation to get my app to work, I found out a workaround that seems
to work and that would not require any changes even if this issue is fixed. In the
spirit of helping other fellow developers, I am posting it here (you may thank me in
your release notes ;) ). I do not have the code here with me right now so I will
simply describe the process. The code itself is trivial anyway:
1 - Create a BroadcastReceiver for the ACTION_SCREEN_OFF intent. You will want to
create it programatically in your service as you only want to intercept it if your
service is running. *DO NOT CREATE IT USING XML*.
2 - Implement the onReceive() method for this broadcast receiver as something like
this:
public void onReceive(Context context, Intent intent) {
// mSensorManager is a reference to the system's SensorManager.
mSensorManager.unregisterListener(YourServiceClass.this);
// mSensor is the sensor you want to monitor.
mSensorManager.registerListener(YourServiceClass.this, mSensor,
SensorManager.SENSOR_DELAY_NORMAL);
}
3 - Don't forget to use registerReceiver() to register your receiver (you can do that
on your service's onCreate method()) and to use unregisterReceiver() to unregister it
when your service is being turned off (do it in onDestroy()).
That is it. You do not have to change anything else in your code (probably). The only
side effect of this is that when you go from normal to standby mode, there can be a
small delay (up to 500 milliseconds in my measures) where onSensorChanged() will not
be called.
Please, always make it clear to the user that running in standby mode will drain more
battery. In my specific app (Silencer, available in the Android Market) I require the
user to explicitly enable standby support and I mention on the relevant settings that
this will drain more battery.
Hope this helps.
to work and that would not require any changes even if this issue is fixed. In the
spirit of helping other fellow developers, I am posting it here (you may thank me in
your release notes ;) ). I do not have the code here with me right now so I will
simply describe the process. The code itself is trivial anyway:
1 - Create a BroadcastReceiver for the ACTION_SCREEN_OFF intent. You will want to
create it programatically in your service as you only want to intercept it if your
service is running. *DO NOT CREATE IT USING XML*.
2 - Implement the onReceive() method for this broadcast receiver as something like
this:
public void onReceive(Context context, Intent intent) {
// mSensorManager is a reference to the system's SensorManager.
mSensorManager.unregisterListener(YourServiceClass.this);
// mSensor is the sensor you want to monitor.
mSensorManager.registerListener(YourServiceClass.this, mSensor,
SensorManager.SENSOR_DELAY_NORMAL);
}
3 - Don't forget to use registerReceiver() to register your receiver (you can do that
on your service's onCreate method()) and to use unregisterReceiver() to unregister it
when your service is being turned off (do it in onDestroy()).
That is it. You do not have to change anything else in your code (probably). The only
side effect of this is that when you go from normal to standby mode, there can be a
small delay (up to 500 milliseconds in my measures) where onSensorChanged() will not
be called.
Please, always make it clear to the user that running in standby mode will drain more
battery. In my specific app (Silencer, available in the Android Market) I require the
user to explicitly enable standby support and I mention on the relevant settings that
this will drain more battery.
Hope this helps.
ji...@gmail.com <ji...@gmail.com> #46
I know this might've been stated elsewhere, but in case of Smart Alarm Clock app
can't you just set screen time out to 'never'? Seemed to work for me. You will be
having your phone in charger when you are using the said app anyway.
Just a thought.
can't you just set screen time out to 'never'? Seemed to work for me. You will be
having your phone in charger when you are using the said app anyway.
Just a thought.
yu...@gmail.com <yu...@gmail.com> #47
my code is already registering the listener in the SCREEN_OFF event (my program uses
sensors only with screen off), but still fails on some devices.
Only real difference from your sample is that I don't call unregister because sensors
are not in use.
sensors only with screen off), but still fails on some devices.
Only real difference from your sample is that I don't call unregister because sensors
are not in use.
jo...@gmail.com <jo...@gmail.com> #48
[Comment deleted]
a....@gmail.com <a....@gmail.com> #49
Bruno, thanks a lot!
I really hope re-registering listener after screen off will help at least for some phones.
I will use this hack in next version of Smart Alarm Clock and will write the resulting stats here.
Bruno, you made my day :-)
I really hope re-registering listener after screen off will help at least for some phones.
I will use this hack in next version of Smart Alarm Clock and will write the resulting stats here.
Bruno, you made my day :-)
br...@gmail.com <br...@gmail.com> #50
So far, I was able to test the code I described above in the following devices:
Google Nexus One
Motorola Milestone
HTC Dream
HTC Magic
HTC Hero
In all of those, the code worked. Note that, in my case, my program already
registered a listener for the orientation sensor and I simply added the code I
described (that's why I unregistered the listener in onReceive().
As this is kinda of a hack (either this issue we are discussing here is a bug or it
is an intended feature and the fact that my example code worked is a bug), I can not
make guarantees about it generally working, but it *IS* working for me.
Google Nexus One
Motorola Milestone
HTC Dream
HTC Magic
HTC Hero
In all of those, the code worked. Note that, in my case, my program already
registered a listener for the orientation sensor and I simply added the code I
described (that's why I unregistered the listener in onReceive().
As this is kinda of a hack (either this issue we are discussing here is a bug or it
is an intended feature and the fact that my example code worked is a bug), I can not
make guarantees about it generally working, but it *IS* working for me.
av...@gmail.com <av...@gmail.com> #51
This issue is seriously impacting one of my apps as well. The app works perfectly on
the G1 (and I haven't received any issue reports from anyone else), but on my new
Nexus, the onSensorChanged listener stops being called when the screen turns off,
despite my holding a PARTIAL_WAKE_LOCK.
Unfortunately, I tried Bruno's workaround but thus far have not been able to get it to
work. :-( Please, PLEASE fix this ASAP.
the G1 (and I haven't received any issue reports from anyone else), but on my new
Nexus, the onSensorChanged listener stops being called when the screen turns off,
despite my holding a PARTIAL_WAKE_LOCK.
Unfortunately, I tried Bruno's workaround but thus far have not been able to get it to
work. :-( Please, PLEASE fix this ASAP.
po...@gmail.com <po...@gmail.com> #52
I really any this bug fix
Pls do help
Pls do help
gu...@gmail.com <gu...@gmail.com> #53
would it be possible if you post a blogpost about this bruno? Or an elaborate
explanation?
explanation?
mb...@gmail.com <mb...@gmail.com> #55
Another Samsung Moment not working with the screen off. Hopefully this will help.
an...@gmail.com <an...@gmail.com> #56
Owner of HTC hero would lov3 to have a fix. Thanks
an...@gmail.com <an...@gmail.com> #57
Owner of HTC hero would lov3 to have a fix. Thanks
gu...@gmail.com <gu...@gmail.com> #58
thx a lot bruno, will try it soon
p....@gmail.com <p....@gmail.com> #59
FYI: After working with Bruno a bit and discovering that the fix does not seem to work
on HTC Hero or Tattoo, I have now posted a call for help in the Android Developers
forum --http://groups.google.com/group/android-
developers/browse_thread/thread/67d1345090dd8b41?hl=en#
Please feel free to also join the discussion, or continue it here.
Can someone confirm that Bruno's fix works for Droid 2.01?
on HTC Hero or Tattoo, I have now posted a call for help in the Android Developers
forum --
developers/browse_thread/thread/67d1345090dd8b41?hl=en#
Please feel free to also join the discussion, or continue it here.
Can someone confirm that Bruno's fix works for Droid 2.01?
be...@gmail.com <be...@gmail.com> #60
ohhh, pleeeease fix this problem.
kr...@gmail.com <kr...@gmail.com> #61
Definitely need this fix for the droid eris.
mi...@gmail.com <mi...@gmail.com> #62
Please fix this for the htc hero!!
pa...@gmail.com <pa...@gmail.com> #63
I would also very much like a fix for the HTC Hero, please google/htc :(
fr...@gmail.com <fr...@gmail.com> #64
I tried the App on my G1.
I did not recognize my movements, but alarm started at the fixed time.
Three times I had "force coloses".
I think things have to be done.
Thanks!
I did not recognize my movements, but alarm started at the fixed time.
Three times I had "force coloses".
I think things have to be done.
Thanks!
fr...@gmail.com <fr...@gmail.com> #65
[Comment deleted]
iv...@gmail.com <iv...@gmail.com> #66
I can't use Smart Alarm Clock aplication on Hero because of this bug:( Please fix
asop.
asop.
ha...@gmail.com <ha...@gmail.com> #67
I'm having trouble getting the Smart Alarm Clock application to work as intended on
my Nexus One because of this problem. A fix would be greatly appreciated :) Thank you!
my Nexus One because of this problem. A fix would be greatly appreciated :) Thank you!
st...@gmail.com <st...@gmail.com> #68
Can we all please stop crying "please fix this!" because it is really getting
annoying to get all these mails. I got some people to star this problem but they
already unstarred because of the mail flood they got. I am on the verge of unstarring
too, thus further sinking this problem towards the bottom of the problem pool. Thanks
in advance.
annoying to get all these mails. I got some people to star this problem but they
already unstarred because of the mail flood they got. I am on the verge of unstarring
too, thus further sinking this problem towards the bottom of the problem pool. Thanks
in advance.
t....@gmail.com <t....@gmail.com> #69
Please fix this "asap" for the HTC Hero!
si...@gmail.com <si...@gmail.com> #70
This bug really needs a fix!
ka...@gmail.com <ka...@gmail.com> #71
I belive that if you install a app like KeepScreen (block screen timeout), you can
choose to keep Smart alarm clock to not shut down screensaver and can then use this
app.
choose to keep Smart alarm clock to not shut down screensaver and can then use this
app.
jo...@gmail.com <jo...@gmail.com> #72
"block screen timeout" is "screen dim lock" which means screen never turn out.
This way is alternative thing, but it will consume battery a lot.
Using accelerometer with "screen off" is essential for efficient usage.
This way is alternative thing, but it will consume battery a lot.
Using accelerometer with "screen off" is essential for efficient usage.
an...@gmail.com <an...@gmail.com> #73
Temporary solution for Nexus One (and maybe others) is to use Screen Mode or Screen On
from Market and then dim the screen in Clock app running.
from Market and then dim the screen in Clock app running.
nw...@gmail.com <nw...@gmail.com> #74
Please fix this "asaFp" for the HTC Hero!
ll...@gmail.com <ll...@gmail.com> #75
Please fix this. I would love to have a sleep cycle detecting app for my phone so I
can make the most out of the time I have to sleep. It just isn't possible unless this
bug is fixed!! (Moto Droid)
can make the most out of the time I have to sleep. It just isn't possible unless this
bug is fixed!! (Moto Droid)
fl...@gmail.com <fl...@gmail.com> #76
This bug also encountered on HTC Eris.
a....@gmail.com <a....@gmail.com> #77
Good news, everybody!
I'm attending Android Labs event in Zurich and developers say they have a bugfix and
are going to push it in the next OTA update, at least for Nexus One. That's really
great!
I'm attending Android Labs event in Zurich and developers say they have a bugfix and
are going to push it in the next OTA update, at least for Nexus One. That's really
great!
pe...@gmail.com <pe...@gmail.com> #78
Why didn't anyone take assignment of the issue and provide a status update if it indeed
was being worked on. Maybe it would help limit the flood of "OMG PlZ FIx!!!! IT no
WERKS!!!"
was being worked on. Maybe it would help limit the flood of "OMG PlZ FIx!!!! IT no
WERKS!!!"
p....@gmail.com <p....@gmail.com> #79
I talked to one of the Google Android Developers at the Android Developer Labs, and
it turns out there is still internal debate about this issue as it relates to battery
power. The argument seems to largely revolve around "protecting users". On the other
hand, I strongly believe the argument is strongly in favor of allowing the
accelerometer to be on and then letting the users decide with feedback/download
counts. This is the same idea is Google followed with background apps, etc. -- this
severely limits our ability to develop such useful apps as pedometers, various other
motion based games and apps. If someone has the time, please put together a more
organized list of reasons, and I can try to get it into the right hands.
it turns out there is still internal debate about this issue as it relates to battery
power. The argument seems to largely revolve around "protecting users". On the other
hand, I strongly believe the argument is strongly in favor of allowing the
accelerometer to be on and then letting the users decide with feedback/download
counts. This is the same idea is Google followed with background apps, etc. -- this
severely limits our ability to develop such useful apps as pedometers, various other
motion based games and apps. If someone has the time, please put together a more
organized list of reasons, and I can try to get it into the right hands.
it...@gmail.com <it...@gmail.com> #80
@80
Protecting users against what a flat battery?
I dont understand why they cant just put it in settings "Enabled Accelerometer while
screen is off".
I need this feature because I want a sleep cycle alarm clock to wake me up because I
have serious sleeping pattern issues.
Protecting users against what a flat battery?
I dont understand why they cant just put it in settings "Enabled Accelerometer while
screen is off".
I need this feature because I want a sleep cycle alarm clock to wake me up because I
have serious sleeping pattern issues.
an...@gmail.com <an...@gmail.com> #81
#80
oh, well,
maybe they should just say
"because we don't use this feature when my screen off,
so we decide to disable this feature when screen off, in core."
what a open develop environment,
just another step toward apple store, and google do their way in system core lol
oh, well,
maybe they should just say
"because we don't use this feature when my screen off,
so we decide to disable this feature when screen off, in core."
what a open develop environment,
just another step toward apple store, and google do their way in system core lol
a....@gmail.com <a....@gmail.com> #82
@andcycle, @p.artem,
I just want to repeat: Reto Meier, Android developer advocate from Google
(google.com/profiles/reto.meier ) kindly answered my quetion about this bug during
Android Developers lab in Zurich.
I was really surprised that he knows a lot about this bug (said it really affects
pedometers because that even can't keep phones on charger as a workaround) and he
knows that there's a software workaround for Motorola phoned.
So, he confirmed that after internal discussions they agreed that this is a software
bug: "If you hold CPU lock, that's over - you definetely should have access to all
the senors. So, it's a question of build process and time - where it will be pushed
to updates."
That's what I was said.
PS. Many thanks to Google - they presented free Nexus One to every visitor of that
meeting! That was really kind and great idea =)
I just want to repeat: Reto Meier, Android developer advocate from Google
(
Android Developers lab in Zurich.
I was really surprised that he knows a lot about this bug (said it really affects
pedometers because that even can't keep phones on charger as a workaround) and he
knows that there's a software workaround for Motorola phoned.
So, he confirmed that after internal discussions they agreed that this is a software
bug: "If you hold CPU lock, that's over - you definetely should have access to all
the senors. So, it's a question of build process and time - where it will be pushed
to updates."
That's what I was said.
PS. Many thanks to Google - they presented free Nexus One to every visitor of that
meeting! That was really kind and great idea =)
an...@gmail.com <an...@gmail.com> #83
@a.kosenkov, @all_google_android_developer,
I apologize for my rude reply,
and I can accept that if fix this problem now would stall the entire build process,
but if here, a issue tracking system,
issue just hanging there without any response on it,
we just think you guys ignore all the users,
at least there should be a official response like
"we will investigate this problem soon."
"we have located the issue, but it would take a long time for fixing it, please be
patient."
any progress report will let people know you guys are working on it, not ignoring us.
and by the way, there is no free Nexus One for every visitor in my little island,
that's a treat lol
I apologize for my rude reply,
and I can accept that if fix this problem now would stall the entire build process,
but if here, a issue tracking system,
issue just hanging there without any response on it,
we just think you guys ignore all the users,
at least there should be a official response like
"we will investigate this problem soon."
"we have located the issue, but it would take a long time for fixing it, please be
patient."
any progress report will let people know you guys are working on it, not ignoring us.
and by the way, there is no free Nexus One for every visitor in my little island,
that's a treat lol
p....@gmail.com <p....@gmail.com> #84
@a.kosenkov
Thanks for the information. I had spoken to Roman at the New York ADL event, and he
checked the internal db then. I am guessing the internal issue-tracking system is also
out of date on this issue. It's very good to hear that the debate went this way, and
not the other way around. It is really surprising nobody has chimed in officially here.
Thanks for the information. I had spoken to Roman at the New York ADL event, and he
checked the internal db then. I am guessing the internal issue-tracking system is also
out of date on this issue. It's very good to hear that the debate went this way, and
not the other way around. It is really surprising nobody has chimed in officially here.
75...@gmail.com <75...@gmail.com> #85
Another HTC Hero user here, please fix this guys i would love to use the smart alarm
clock, you guys are really losing out on the iphone because of this.
clock, you guys are really losing out on the iphone because of this.
dd...@gmail.com <dd...@gmail.com> #86
My Eris no longer records steps with screen locked in cardiorainer app. Worked fine before last.update.
Please fix this bug asap.
Please fix this bug asap.
lu...@gmail.com <lu...@gmail.com> #87
Please fix this bug. I do need this function.
thanks
thanks
fr...@gmail.com <fr...@gmail.com> #88
Yeah, now we know that people like to see this bug fixed. Quit replying if you don't
have anything to say. :(
My apologies bothering everyone in this thread with another meaningless reply.
have anything to say. :(
My apologies bothering everyone in this thread with another meaningless reply.
ch...@gmail.com <ch...@gmail.com> #89
How long & how many votes before you guys finally fix this stuff? l would think that by now it would
have been done so that this wouldn't still be happening. Do you guys even care?
have been done so that this wouldn't still be happening. Do you guys even care?
ru...@gmail.com <ru...@gmail.com> #90
Chocokitt: I agree with you, it's dissapointing, we can only wait, it's also
unprofessional to not say when this update will come, I have a IT-development firm and
it's standard procedure to have a launch date on updates + roadmap with time.
unprofessional to not say when this update will come, I have a IT-development firm and
it's standard procedure to have a launch date on updates + roadmap with time.
ze...@gmail.com <ze...@gmail.com> #91
Pls fix this bug, there are a lot of apps can't response normally without it...
th...@gmail.com <th...@gmail.com> #92
[Comment deleted]
a....@gmail.com <a....@gmail.com> #93
Please, stop spaming to this thread!!!
I've subscribed to this issue in order to obtain relevant information and not to
listening your cries like: "Please, fix this bug. I want this bug to be fixed
very-very much.". It really annoys.
I've subscribed to this issue in order to obtain relevant information and not to
listening your cries like: "Please, fix this bug. I want this bug to be fixed
very-very much.". It really annoys.
br...@gmail.com <br...@gmail.com> #94
The problem lies in the use of the word "thread". Bug trackers are not forums, please don't treat them like so.
da...@gmail.com <da...@gmail.com> #95
Please fix this for the HTC Hero! Thank you!
th...@gmail.com <th...@gmail.com> #96
PLEASE FIX, i have HTC Hero and love CardioTrainer and now does not allow pedometer
to work when screen is not on. I contacted Worksmart Labs and they said it was an
Android system update that stopped this, please fix would love to have it work.
to work when screen is not on. I contacted Worksmart Labs and they said it was an
Android system update that stopped this, please fix would love to have it work.
21...@gmail.com <21...@gmail.com> #97
PLEASE FIX,I have moto cliq and love CardioTrainer and now does not allow pedometer
to work when screen is not on. FIX THIS PLEASE
to work when screen is not on. FIX THIS PLEASE
ju...@gmail.com <ju...@gmail.com> #98
DO NOT REPLY to this thread unless you have something to add to the discussion. That
does not include solution requests.
does not include solution requests.
di...@gmail.com <di...@gmail.com> #99
Please fix this. Many applications on my Motorola
Droid are plagued by this
Droid are plagued by this
ad...@gmail.com <ad...@gmail.com> #100
Droid isn't doing. Please fix!
mi...@gmail.com <mi...@gmail.com> #101
PLEASE FIX, i have HTC Hero and love CardioTrainer and now does not allow pedometer
to work when screen is not on. I want to be able to work out and it count my steps!!!
Please fix!!!
to work when screen is not on. I want to be able to work out and it count my steps!!!
Please fix!!!
tu...@gmail.com <tu...@gmail.com> #102
PLEASE FIX!
em...@gmail.com <em...@gmail.com> #103
I have rooted my phone and installed BeHero V1.3.2 (Android 2.1) will this fix the
problem?
problem?
my...@gmail.com <my...@gmail.com> #104
I cannot actually get bruno's fix to work for some reason. His page says it works on
droid 2.0.1 but it is not working for me.
droid 2.0.1 but it is not working for me.
ph...@gmail.com <ph...@gmail.com> #105
It doesn't works in Hero, Nexus and Tattoo.
It works perfectly in Magic.
Fix this bug please or make some wakelock for sensors and cpu! thanks in advance
It works perfectly in Magic.
Fix this bug please or make some wakelock for sensors and cpu! thanks in advance
tc...@gmail.com <tc...@gmail.com> #106
The pedometer does not work correctly for the cardio program. Please do what you can to
repair this bug.
Thanks,
repair this bug.
Thanks,
bo...@gmail.com <bo...@gmail.com> #107
Would like a fix for this as well!
jg...@gmail.com <jg...@gmail.com> #108
Please fix
li...@gmail.com <li...@gmail.com> #109
Fix it Palmer!
no...@gmail.com <no...@gmail.com> #110
Please fix so sleep monitoring apps work properly
sh...@gmail.com <sh...@gmail.com> #111
[Comment deleted]
ne...@gmail.com <ne...@gmail.com> #112
Having this problem with cardio trainer using motorla backflip
fl...@gmail.com <fl...@gmail.com> #113
Please fix this issue... @HTC Please upgrade Hero firmware to Version 2.x! It's really embarassing...
ke...@gmail.com <ke...@gmail.com> #114
Please fix ,not working in 2.0.1.
lo...@gmail.com <lo...@gmail.com> #115
Hey Google, please help my Nexus wake me up with a smile!
f....@gmail.com <f....@gmail.com> #116
Please fix that!
ro...@gmail.com <ro...@gmail.com> #117
This really needs to be fixed
ag...@gmail.com <ag...@gmail.com> #118
Please fix! I have to leave cardio trainer on while
I'm treadmilling, and this means leaving the screen
on for the pedometer count. Leaving the screen on
means random apps turned on or off and cardio
trainer going into pause accidentally.
I'm treadmilling, and this means leaving the screen
on for the pedometer count. Leaving the screen on
means random apps turned on or off and cardio
trainer going into pause accidentally.
ep...@gmail.com <ep...@gmail.com> #119
Please fix this issue!
It's need for many useful applications.
It's need for many useful applications.
ge...@gmail.com <ge...@gmail.com> #120
Seems not to work on a HTC legend either.
li...@gmail.com <li...@gmail.com> #121
This issue happens on the HTC Desire as well.
br...@gmail.com <br...@gmail.com> #122
Good to see that my advice has been heeded.
cw...@gmail.com <cw...@gmail.com> #123
[Comment deleted]
cw...@gmail.com <cw...@gmail.com> #124
[Comment deleted]
td...@gmail.com <td...@gmail.com> #125
Dito
ja...@gmail.com <ja...@gmail.com> #126
Really annoying i was getting dangerously close to
thinking the legend was an iPhone beater.
thinking the legend was an iPhone beater.
ch...@gmail.com <ch...@gmail.com> #127
Just in case anybody wants to use it. This bit of code will periodically get the
accelerometer readings when the phone is asleep. I warn you tho!! It's a very nasty
hack, as it has to wake the phone so the screen will be on briefly to take the
measurements, then turns it off again. I don't think I can even use it in my app, as
I would have to explain that to the users. Maybe if someone knows how to switch the
screen off at a lower level before the wake lock takes place we may have something
usable. In any case Google really need to fix this issue! Even if it allowed readings
in partial lock mode it would be acceptable, but having to have the screen on is
ridiculous! For what it's worth:
class PhoneMovementManager {
private SensorManager sensorManager;
private PowerManager powerManager;
private SensorEventListener sensorEventListener;
private Timer timer;
public PhoneMovementManager(SensorManager sensorManager, PowerManager powerManager) {
super();
this.sensorManager = sensorManager;
this.powerManager = powerManager;
sensorEventListener = new SensorEventListener() {
public void onSensorChanged(SensorEvent event) {
PhoneMovementManager.this.onAccelerometerChanged(event.values);
}
public void onAccuracyChanged(Sensor sensor, int accuracy) {
// TODO Auto-generated method stub
}
};
}
protected void onAccelerometerChanged(float[] values) {
StringBuffer buf = new StringBuffer();
for (float f : values) {
buf.append(f);
buf.append(", ");
}
log.debug(buf.toString());
synchronized (sensorEventListener) {
sensorEventListener.notify();
}
}
public void init() {
timer = new Timer();
timer.scheduleAtFixedRate(new TimerTask() {
@Override
public void run() {
try {
log.debug("START listening on the SENSOR_ACCELEROMETER");
log.debug("register accelerometer listener");
sensorManager.registerListener(sensorEventListener, sensorManager
.getDefaultSensor(SensorManager.SENSOR_ACCELEROMETER),
SensorManager.SENSOR_DELAY_NORMAL);
log.debug("acquiring lock");
PowerManager.WakeLock wl =
powerManager.newWakeLock(PowerManager.ACQUIRE_CAUSES_WAKEUP
| PowerManager.SCREEN_DIM_WAKE_LOCK, PhoneMovementManager.class.getSimpleName());
wl.acquire();
log.debug("waiting");
synchronized (sensorEventListener) {
sensorEventListener.wait(1000);
}
log.debug("releasing lock");
wl.release();
log.debug("unregister accelerometer listener");
sensorManager.unregisterListener(sensorEventListener);
log.debug("STOP listening on the SENSOR_ACCELEROMETER");
} catch (Exception e) {
log.error("Unable to use SENSOR_ACCELEROMETER", e);
}
}
}, 10000, 10000);
}
public void release() {
timer.cancel();
}
}
accelerometer readings when the phone is asleep. I warn you tho!! It's a very nasty
hack, as it has to wake the phone so the screen will be on briefly to take the
measurements, then turns it off again. I don't think I can even use it in my app, as
I would have to explain that to the users. Maybe if someone knows how to switch the
screen off at a lower level before the wake lock takes place we may have something
usable. In any case Google really need to fix this issue! Even if it allowed readings
in partial lock mode it would be acceptable, but having to have the screen on is
ridiculous! For what it's worth:
class PhoneMovementManager {
private SensorManager sensorManager;
private PowerManager powerManager;
private SensorEventListener sensorEventListener;
private Timer timer;
public PhoneMovementManager(SensorManager sensorManager, PowerManager powerManager) {
super();
this.sensorManager = sensorManager;
this.powerManager = powerManager;
sensorEventListener = new SensorEventListener() {
public void onSensorChanged(SensorEvent event) {
PhoneMovementManager.this.onAccelerometerChanged(event.values);
}
public void onAccuracyChanged(Sensor sensor, int accuracy) {
// TODO Auto-generated method stub
}
};
}
protected void onAccelerometerChanged(float[] values) {
StringBuffer buf = new StringBuffer();
for (float f : values) {
buf.append(f);
buf.append(", ");
}
log.debug(buf.toString());
synchronized (sensorEventListener) {
sensorEventListener.notify();
}
}
public void init() {
timer = new Timer();
timer.scheduleAtFixedRate(new TimerTask() {
@Override
public void run() {
try {
log.debug("START listening on the SENSOR_ACCELEROMETER");
log.debug("register accelerometer listener");
sensorManager.registerListener(sensorEventListener, sensorManager
.getDefaultSensor(SensorManager.SENSOR_ACCELEROMETER),
SensorManager.SENSOR_DELAY_NORMAL);
log.debug("acquiring lock");
PowerManager.WakeLock wl =
powerManager.newWakeLock(PowerManager.ACQUIRE_CAUSES_WAKEUP
| PowerManager.SCREEN_DIM_WAKE_LOCK, PhoneMovementManager.class.getSimpleName());
wl.acquire();
log.debug("waiting");
synchronized (sensorEventListener) {
sensorEventListener.wait(1000);
}
log.debug("releasing lock");
wl.release();
log.debug("unregister accelerometer listener");
sensorManager.unregisterListener(sensorEventListener);
log.debug("STOP listening on the SENSOR_ACCELEROMETER");
} catch (Exception e) {
log.error("Unable to use SENSOR_ACCELEROMETER", e);
}
}
}, 10000, 10000);
}
public void release() {
timer.cancel();
}
}
mu...@gmail.com <mu...@gmail.com> #128
[Comment deleted]
an...@gmail.com <an...@gmail.com> #129
Just tried the unregister and re-register "hack" and it doesn't work on a HTC Legend
(2.1).
This should be solved by a permission: "application can read sensors when in sleep mode"
(2.1).
This should be solved by a permission: "application can read sensors when in sleep mode"
ja...@gmail.com <ja...@gmail.com> #130
Please fix this bug!
si...@gmail.com <si...@gmail.com> #131
HTC Hero Smart Alarm users: You can set it so that the screen is always on when the
phone is plugged in by going to Settings > Applications > Development and ticking
""Stay Awake". That way you can use this app at night.
Sadly there are some apps that are impractical to run while charging, like Cardiac
trainer. I hope this bug is fixed soon.
phone is plugged in by going to Settings > Applications > Development and ticking
""Stay Awake". That way you can use this app at night.
Sadly there are some apps that are impractical to run while charging, like Cardiac
trainer. I hope this bug is fixed soon.
dj...@tampabay.rr.com <dj...@tampabay.rr.com> #132
HTC Hero - Sprint: when using Cardio Trainer app the steps are no longer counted when the phone
goes into sleep mode.
goes into sleep mode.
dj...@tampabay.rr.com <dj...@tampabay.rr.com> #133
HTC Hero - Sprint: when using Cardio Trainer app the steps are no longer counted when the phone
goes into sleep mode.
goes into sleep mode.
dj...@tampabay.rr.com <dj...@tampabay.rr.com> #134
HTC Hero - Sprint: when using Cardio Trainer app the steps are no longer counted when the phone
goes into sleep mode.
goes into sleep mode.
mi...@gmail.com <mi...@gmail.com> #135
Droid Incredible here, Cardiotrainer unable to count steps when screen is off/asleep
ct...@gmail.com <ct...@gmail.com> #136
HTC Desire: I'm developing always-sensing based application. This issue is really
critical, in this way I cannot use android platform for my application.
I hope this issue will be fixed ASAP.
Thanks
critical, in this way I cannot use android platform for my application.
I hope this issue will be fixed ASAP.
Thanks
ch...@gmail.com <ch...@gmail.com> #137
Fix it please
jo...@google.com <jo...@google.com>
la...@gmail.com <la...@gmail.com> #138
Am I getting it right that someone is actually working to solve the issue now?
In that case: Thanks to everyone that has commented and made clear thjat the issue is
important. And of course thanks to the one actually working on it.
In that case: Thanks to everyone that has commented and made clear thjat the issue is
important. And of course thanks to the one actually working on it.
pe...@gmail.com <pe...@gmail.com> #139
This bug also happens if you just turn the screen off manually:
WindowManager.LayoutParams params = getWindow().getAttributes();
params.screenBrightness = 0.0f;
getWindow().setAttributes(params);
So it seems that disabling SensorEvents is directly connected to turning off the
screen, regardless of whether the phone is in standby mode.
WindowManager.LayoutParams params = getWindow().getAttributes();
params.screenBrightness = 0.0f;
getWindow().setAttributes(params);
So it seems that disabling SensorEvents is directly connected to turning off the
screen, regardless of whether the phone is in standby mode.
pi...@gmail.com <pi...@gmail.com>
jo...@gmail.com <jo...@gmail.com> #140
Cool! So, I assume it is fixed now?
ap...@gmail.com <ap...@gmail.com> #141
If so then I assume it's in 2.2.
br...@gmail.com <br...@gmail.com> #142
Yes, it is 2.2, in case there are still any doubts about this.
br...@gmail.com <br...@gmail.com> #143
As an addendum, the way it works now is that you have to acquire a partial wake lock.
This guarantees that the CPU will not enter sleep mode and that will guarantee that
the sensors continue sending data as expected. The underlying problem was that,
basically, a partial wake lock would not guarantee that the sensors would continue
running.
This guarantees that the CPU will not enter sleep mode and that will guarantee that
the sensors continue sending data as expected. The underlying problem was that,
basically, a partial wake lock would not guarantee that the sensors would continue
running.
ro...@gmail.com <ro...@gmail.com> #144
Please can this bug get fixed.
aa...@gmail.com <aa...@gmail.com> #145
Plz fix this!
dt...@gmail.com <dt...@gmail.com> #146
I experience this on my Motorola Droid. I wish I could record my treadmill workouts
on with Cardio Trainer. But until this is fixed, my recorded workouts look completely
wimpy : )
on with Cardio Trainer. But until this is fixed, my recorded workouts look completely
wimpy : )
al...@gmail.com <al...@gmail.com> #147
Could you fix that for HTC Hero. It doesn't work now due this bug.
br...@gmail.com <br...@gmail.com> #148
I would love to c this fixed on htc desire
je...@gmail.com <je...@gmail.com> #149
Yes, this is critical to implement so that some apps can truly compete with Apple
ac...@gmail.com <ac...@gmail.com> #150
It's really annoying not to recieve updates while phone screen is off even you set a proper PARTIAL WAKE LOCK !
bg...@bug-br.org.br <bg...@bug-br.org.br> #151
Guys, pay attention! It has been fixed and the fix has been released in Android 2.2. No point on asking for it to be fixed now, right? :)
ma...@gmail.com <ma...@gmail.com> #152
PLEASE fix this.
st...@gmail.com <st...@gmail.com> #153
Can anyone provide commit number or git link to released fix? any useful info besides "Status: Released"?
pa...@gmail.com <pa...@gmail.com> #154
I hope a fix can be found soon. I'm very uncomfortable leaving my screen on the whole night. Using an HTC EVO.
to...@gmail.com <to...@gmail.com> #155
I have updated my Nexus One to 2.2, but the accelerometer issue is still not completely solved. OnSensorChanged() is called at sleep mode, but the accuracy can be extremely low. The gap between OnSensorChanged() is random and it can be 15 mins or higher. Has anybody experienced the same issue?
ma...@gmail.com <ma...@gmail.com> #156
Please fix this issue
nu...@gmail.com <nu...@gmail.com> #157
My Cardio Trainer Pedometer doesn’t work on my HTC Desire
How to fix it??
How to fix it??
we...@gmail.com <we...@gmail.com> #158
My Alarmclock doesn’t work on my HTC Desire
PLEASE fix this.
PLEASE fix this.
cr...@gmail.com <cr...@gmail.com> #159
Please fix this!
ct...@gmail.com <ct...@gmail.com> #160
Hi *tojaymail*,
have you updated Nexus One with official release?
About the OnSensorChanged() gap: have you notice this high gap not moving the smartphone? Because OnSensorChanged() receive more updates (=more accelerometer values) while smartphone is moved .
Can you send us a two recording file of the accelerometer values to see any possible difference while the device is moved and not moved (in sleeping mode)?
Bests
have you updated Nexus One with official release?
About the OnSensorChanged() gap: have you notice this high gap not moving the smartphone? Because OnSensorChanged() receive more updates (=more accelerometer values) while smartphone is moved .
Can you send us a two recording file of the accelerometer values to see any possible difference while the device is moved and not moved (in sleeping mode)?
Bests
jg...@gmail.com <jg...@gmail.com> #161
Same thing with CardiTrainer using motorola cliq xt anf samsung vibrant with stock roms
st...@gmail.com <st...@gmail.com> #162
Today I've received my 2.2 update for the HTC Desire and unfortunately it did *not* fix this issue.
I repeat: the issue is *not* fixed in Froyo / 2.2 (official non-rooted Desire version).
Whenever my Desire goes into standby (with partial wakelock already acquired and sensor registered as DELAY_NORMAL), logcat tells me "Compass CLOSE" and that's about it. There's *no* sensor information at all. Screen goes off, sensor dies.
All of the sensors die, actually. Orientation, magnetic field, temperature, proximity.. they all don't seem to exist in standby mode with a partial wakelock. With and without moving the device around.
Could someone from Google itself actually provide us with some insight into this situation?
I repeat: the issue is *not* fixed in Froyo / 2.2 (official non-rooted Desire version).
Whenever my Desire goes into standby (with partial wakelock already acquired and sensor registered as DELAY_NORMAL), logcat tells me "Compass CLOSE" and that's about it. There's *no* sensor information at all. Screen goes off, sensor dies.
All of the sensors die, actually. Orientation, magnetic field, temperature, proximity.. they all don't seem to exist in standby mode with a partial wakelock. With and without moving the device around.
Could someone from Google itself actually provide us with some insight into this situation?
ru...@gmail.com <ru...@gmail.com> #163
G sensor doesn't work if screen is turned off (standby modus, is needed voor android app 'smart alarm clock', mobile is HTC hero. Bug need to be fixed.
pa...@gmail.com <pa...@gmail.com> #164
Same on HTC desire. Gsensor doesn't work with screen turned off.
ma...@gmail.com <ma...@gmail.com> #165
Same on my Desire with 2.2. This bug is a pain in the but. It would seriously make me change the phone if I could afford to.
jb...@gmail.com <jb...@gmail.com> #166
Plz fix this issue. Desire with 2.2
bl...@gmail.com <bl...@gmail.com> #167
Please fix it!
vo...@gmail.com <vo...@gmail.com> #168
I can confirm for Nexus 1 on Android 2.2, if cable is unplugged sensor values come at random times if movement is low (gaps up to about 10 minutes). if there is some movement it seems to be better and most of the time you get the sampling rate you expect, but there are some longer delays (at least in the seconds). All in all, it seems very unreliable...
sm...@gmail.com <sm...@gmail.com> #169
Same issue with Android 2.2 - steps do not register in cardio trainer with the screen off.
ct...@gmail.com <ct...@gmail.com> #170
Hello, have someone tried to use NDK library (or some C++ code) to try to have direct access to sensors data? I'm currently thinking it can be possible to access sensor using something like C++ code to workaround this issue. GOOGLE TEAM, please can confirm or discard this possibility, Thanks
el...@gmail.com <el...@gmail.com> #171
Please fix this issue with accerelometer and Android!
ol...@gmail.com <ol...@gmail.com> #172
HTC Desire with Android 2.2, still have this issue.
mi...@gmail.com <mi...@gmail.com> #173
Latest update did not fix. HTC Eris
ct...@gmail.com <ct...@gmail.com> #174
I have HTC Desire with 2.2 and still have this ISSUE!!! please FIX IT ... I CANNOT UNDERSTOOD WHY WE STILL HAVE THIS PROBLEM (EASY TO BE SOLVED) THAT MAKE UNUSABLE SOME ALREADY DEVELOPED APPLICATIONS (AND WELL ACCEPTED BY ANDROID LIKE SCREEBL)!!! PLEASE PLEASE PLEASE FIX FIX FIX IT ... IT'S AN ANNOYING BUG!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
ze...@gmail.com <ze...@gmail.com> #175
HTC Aria 2.1, broken.
Should open a new issue if it said it was fixed in 2.2 but isn't working.
Should open a new issue if it said it was fixed in 2.2 but isn't working.
ro...@gmail.com <ro...@gmail.com> #176
Same issue on evo 4g with 2.2
xe...@gmail.com <xe...@gmail.com> #177
I'm running my Motorola Droid with CyanogenMod 6.0 (which is Froyo) and I am getting this error. This issue is was not resolved with v2.2 and it is still an open issue. Please someone fix the status of this bug back to open
[Deleted User] <[Deleted User]> #178
Same problem with the HTC Desire (2.2)... My accelerometer listener is working in SENSOR_DELAY_NORMAL mode and I put the PowerManager to PARTIAL_WAKE_LOCK in my service. When the screen goes black, the sensor doesn't send any changes more !
This problem is very problematic for us...
Can somebody from Google give us more informations ?
This problem is very problematic for us...
Can somebody from Google give us more informations ?
ma...@gmail.com <ma...@gmail.com> #179
Need a result for this, this is ridiculous. Motorola Milestone 2.1
ca...@gmail.com <ca...@gmail.com> #180
My Pedometer doesn’t work on my HTC Hero, SHARP IS01/LYNX too.
I hope this issue to be resolved.
I hope this issue to be resolved.
ze...@gmail.com <ze...@gmail.com> #181
ry...@gmail.com <ry...@gmail.com> #182
Moto Droid here, Cardiotrainer unable to count steps when screen is off/asleep
sm...@gmail.com <sm...@gmail.com> #183
Have a stepcounter that is not recording, Samsung Galaxy S
ma...@gmail.com <ma...@gmail.com> #184
Using Card!io Trainer with a Droid 2, it is shutting down and not counting mileage after "longer" (not sure how long) pauses in my walks. YES some people are using GPS with the display off. Please fix
re...@gmail.com <re...@gmail.com> #185
I have the same problem.
gk...@gmail.com <gk...@gmail.com> #186
I have the same problem on HTC Desire running Android 2.2.
ta...@gmail.com <ta...@gmail.com> #187
BUMP
mu...@gmail.com <mu...@gmail.com> #188
I'd appreciate a firmware update... have the same problem on a desire with 2.2
ml...@gmail.com <ml...@gmail.com> #189
HTC please respond!
ha...@googlemail.com <ha...@googlemail.com> #190
Please fix this!! I'd really love to use the app.
I run Android Froyo on a HTC Desire.
I run Android Froyo on a HTC Desire.
to...@gmail.com <to...@gmail.com> #191
Nexus One owner, please fix the bug.
ex...@gmail.com <ex...@gmail.com> #192
Same problem with HTC Desire @ Froyo.
When this bug will be fixed?
Kind regards
When this bug will be fixed?
Kind regards
ge...@gmail.com <ge...@gmail.com> #193
Please fix!
I'm using a T-Mobile MyTouch 3G Slide.
I'm using a T-Mobile MyTouch 3G Slide.
gg...@gmail.com <gg...@gmail.com> #194
Please fix
w0...@gmail.com <w0...@gmail.com> #195
I have the HTC EVO and this bug is really annoying and I just do not understand how such a BASIC OS function can be left defective for months and months and moths. No excuse for such a problem and it WILL effect sales of applications and even of phones. PLEASE fix it NOW.
Thanks.
Thanks.
ma...@gmail.com <ma...@gmail.com> #196
Bug still on HTC Hero.
Has anyone thought of creating an app that tests the compatibility of handsets and reports the results back? Could be useful stats to see where the differences lie and where specific work arounds are needed.
Has anyone thought of creating an app that tests the compatibility of handsets and reports the results back? Could be useful stats to see where the differences lie and where specific work arounds are needed.
an...@gmail.com <an...@gmail.com> #197
I have tried to use this on a HTC Desire 2.1, and as from reading above, it doesn't work. I'm developing an app that needs to constantly read accelerometer values to detect types of movement and use GPS on SMS events. Any update on this fix as my app will be fairly useless without it?
Thanks.
Thanks.
wa...@gmail.com <wa...@gmail.com> #198
Please fix this on HTC Desire 2.2.
sa...@gmail.com <sa...@gmail.com> #199
Informatica Interactive Online Training at BigClasses.com
* 100% JOB Oriented Training
* Attend Two FREE Trail Classes
* Affordable FEE with REAL TIME Trainers
Informatica course content:http://bigclasses.com/cms/data-warehousing/informatica.html
BigClasses.com is a Global Interactive Online Learning Portal started by Data Warehousing Experts with an aim to provide a Job Oriented Training on ETL & BI Reporting Tools.
ABOUT OUR FACULTY: We have excellent Informatica instructors, who have Industry experience & experts in Online Training.
TRAINING HIGHLIGHTS:
1. Interactive Learning at Learners convenience
2. Industry Savvy Trainers
3. Learn Right from Your Place
4. Customized Curriculum
5. Support after Training
A) Resume Preparation
B) Certification Guidance
C) Interview Assistance
Guaranteed Placement Assistance for USA Learners
We have a forthcoming online batch on Informatica
OTHER DATA WAREHOUSING TOOLS OFFERED:
Reporting Tools: Business Objects, OBIEE, MicroStrategy, Hyperion.
ETL Tools : Informatica, Data Stage, BODI, Abinitio.
Other Tools : MS BI, TeraData, SAS.
OTHER TRAININGS OFFERED:
* SAP
* IBM Mainframes
* Microsoft Technologies
* Testing Tools
Visit:www.bigclasses.com
CONTACT US:contact@bigclasses.com
USA: 1-302 525 2655
INDIA: 91-800 811 4040 for Career Advice
Skype ID: Gtalk ID: Yahoo ID: Hotmail ID: bigclasses
* 100% JOB Oriented Training
* Attend Two FREE Trail Classes
* Affordable FEE with REAL TIME Trainers
Informatica course content:
BigClasses.com is a Global Interactive Online Learning Portal started by Data Warehousing Experts with an aim to provide a Job Oriented Training on ETL & BI Reporting Tools.
ABOUT OUR FACULTY: We have excellent Informatica instructors, who have Industry experience & experts in Online Training.
TRAINING HIGHLIGHTS:
1. Interactive Learning at Learners convenience
2. Industry Savvy Trainers
3. Learn Right from Your Place
4. Customized Curriculum
5. Support after Training
A) Resume Preparation
B) Certification Guidance
C) Interview Assistance
Guaranteed Placement Assistance for USA Learners
We have a forthcoming online batch on Informatica
OTHER DATA WAREHOUSING TOOLS OFFERED:
Reporting Tools: Business Objects, OBIEE, MicroStrategy, Hyperion.
ETL Tools : Informatica, Data Stage, BODI, Abinitio.
Other Tools : MS BI, TeraData, SAS.
OTHER TRAININGS OFFERED:
* SAP
* IBM Mainframes
* Microsoft Technologies
* Testing Tools
Visit:
CONTACT US:contact@bigclasses.com
USA: 1-302 525 2655
INDIA: 91-800 811 4040 for Career Advice
Skype ID: Gtalk ID: Yahoo ID: Hotmail ID: bigclasses
al...@gmail.com <al...@gmail.com> #200
Help ! We need to fix this bug !
[Deleted User] <[Deleted User]> #201
Doesn't work on HTC Desire HD. Please fix this!
ga...@gmail.com <ga...@gmail.com> #202
Doesn't work on Nexus One. Please Fix.
jo...@gmail.com <jo...@gmail.com> #203
I can confirm this is happening to users of my sleep-movement-logging app who have HTC Desire (HD too I believe)
el...@gmail.com <el...@gmail.com> #204
Also happens with PhoneAlarm PRO - Only fix for the phones that do not keep reading sensors when the screen is off, is to keep the screen on at the moment :(
jo...@gmail.com <jo...@gmail.com> #205
Please fix this on HTC Desire!
jp...@gmail.com <jp...@gmail.com> #206
Please change this behavior
ba...@gmail.com <ba...@gmail.com> #207
Another HTC Incredible user that is annoyed that an application I paid for is NOT working because of this bug!
pm...@gmail.com <pm...@gmail.com> #208
Plz fix this bug - Droid X can not do what it's supposed to - my CariodTrainer app is hampered because it can't track pedometer action effectively during a workout although the GPS works!
Thank you!
Thank you!
mi...@gmail.com <mi...@gmail.com> #209
Please fix this on HTC Desire!
Thank you!
Thank you!
ho...@gmail.com <ho...@gmail.com> #210
[Comment deleted]
so...@gmail.com <so...@gmail.com> #211
Does anybody know, whether it was fixed in Android 2.3? Thx.
r....@gmail.com <r....@gmail.com> #212
Fixed in 2.3? I didn't find any clues in the release notes http://developer.android.com/sdk/android-2.3.html
Gingerbread is out since beginning of December.
Gingerbread is out since beginning of December.
go...@gmail.com <go...@gmail.com> #213
I have this issue on HTC desire with 2.2 OS. Please fix!!!
mi...@gmail.com <mi...@gmail.com> #214
Is anybody even working on this. Happens on my Desire HD with 2.2.
I'm using a app that uses the pedometer. The pedometer stops when the screen is locked.
I'm using a app that uses the pedometer. The pedometer stops when the screen is locked.
go...@gmail.com <go...@gmail.com> #215
Can anybody please resolve this @ the earliest.
I'm using Cardio trainer that uses the pedometer. The pedometer stops when the screen is locked & hence I am unable to record my workouts which is really frustrating... Using Desire with Froyo.
I'm using Cardio trainer that uses the pedometer. The pedometer stops when the screen is locked & hence I am unable to record my workouts which is really frustrating... Using Desire with Froyo.
al...@gmail.com <al...@gmail.com> #216
Same problem here. Please fix. I have an Android HTC - Cardio Trainer works great outdoors but when I am on a treadmill and lock the screen, the pedometer stops.
Very very annoying.
Very very annoying.
da...@gmail.com <da...@gmail.com> #217
HTC Incredible. Same issue. Please resolve.
re...@gmail.com <re...@gmail.com> #218
Saem problem here on the Nexus One
ro...@gmail.com <ro...@gmail.com> #219
Love the app ! ! ! , but this main feature is not working ! ! !!
Hopefully it will resolved soon.
Droid X
Let us know on update ....
Hopefully it will resolved soon.
Droid X
Let us know on update ....
le...@gmail.com <le...@gmail.com> #220
HTC Legend, Froyo 2.2. Same problem.
ch...@gmail.com <ch...@gmail.com> #221
HTC Desire, OS 2.2. Same problem, phone's accelerometer is not working while screen is off.
ca...@gmail.com <ca...@gmail.com> #222
Another user with this issue on the HTC Incredible. Please fix this!
da...@gmail.com <da...@gmail.com> #223
please address this issue, as it is restricting platform applications.
sh...@gmail.com <sh...@gmail.com> #224
I see this issue has been running for a long time. What does it take to get some action?
be...@gmail.com <be...@gmail.com> #225
YEA PLEASE SOLVE IT!!!
my...@gmail.com <my...@gmail.com> #226
HTC Desire..
my...@gmail.com <my...@gmail.com> #227
[Comment deleted]
sa...@gmail.com <sa...@gmail.com> #228
Just my penny; I have the HTC Desire HD 2.2. Unfortunately the work around does not help either. Ik kept the phone on charger with screen on. For some reason it did not record anything.
co...@gmail.com <co...@gmail.com> #229
HTC desire don't record anything with or without usb cable and screen on
ma...@googlemail.com <ma...@googlemail.com> #231
I downloaded Cardio Trainer on my HTC Desire HD and I can't use it befause the pedometer doesn't work on sleep mode. I considered buying the full version but until this is fixed I won't be.
ti...@gmail.com <ti...@gmail.com> #232
I would like to see this issue fixed as well. I just purchased this phone and was looking forward to ditching my pedometer in place of using the phone
an...@gmail.com <an...@gmail.com> #233
Upgraded my HTC Desire to Android 2.2 and have a partial wakelock in my App. As soon as my screen turns off, the accelerometer stops reading values. I desperately need to get this fixed!!
ni...@gmail.com <ni...@gmail.com> #234
HTC Legend still has this problem after OTA upgrade to Android 2.2. I wish it'll be fixed soon.
wo...@gmail.com <wo...@gmail.com> #235
This needs to be fixed so cardiotrainer will record using the pedometer function correctly.
cs...@gmail.com <cs...@gmail.com> #236
Please fix this Google
va...@googlemail.com <va...@googlemail.com> #237
Fixe! Fixe!
sh...@gmail.com <sh...@gmail.com> #238
Pls fix asap
va...@gmail.com <va...@gmail.com> #239
I'm having the same issue on my Samsung Galaxy S. Please fix!
ci...@gmail.com <ci...@gmail.com> #240
Just made a simple app to test that bug. Check out "Standby VS onSensorChanged" in Android Market (market://search?q=pname:com.cifrasoft.standbytest).
kl...@gmail.com <kl...@gmail.com> #241
[Comment deleted]
jo...@gmail.com <jo...@gmail.com> #242
This bug is affecting my use of Cardiotrainer on my G2.
eg...@gmail.com <eg...@gmail.com> #243
Cardiotrainer on HTC Incredible
ra...@gmail.com <ra...@gmail.com> #244
HTC Desire Z, bug confirmed.
bo...@gmail.com <bo...@gmail.com> #245
HTC dedire hd - :(
Please, make new setting switch to manage accelerometer in sleeping mode!
Please, make new setting switch to manage accelerometer in sleeping mode!
jo...@gmail.com <jo...@gmail.com> #246
This bug is affecting my use of Cardiotrainer on my Desire
fa...@gmail.com <fa...@gmail.com> #247
Bump. Fricking fix this Google, its stupid.
44...@gmail.com <44...@gmail.com> #248
Affects use of pedometer on HTC Incredible.
ka...@gmail.com <ka...@gmail.com> #249
This is an annoying bug. Please fix!
ka...@gmail.com <ka...@gmail.com> #250
This is an annoying bug. Please fix!
sh...@gmail.com <sh...@gmail.com> #251
HTC Desire - 2.29.405.5
Having the same problem with Cardiotrainer however it works fine on AOSP Roms like Oxygen and CM.
Having the same problem with Cardiotrainer however it works fine on AOSP Roms like Oxygen and CM.
no...@googlemail.com <no...@googlemail.com> #252
I have the same problem on HTC Desire running Android 2.2
and would be very pleased if this bug would finaly be fixed.
and would be very pleased if this bug would finaly be fixed.
sb...@gmail.com <sb...@gmail.com> #253
Fix it!
st...@gmail.com <st...@gmail.com> #254
HTC EVO doesn't work after update, It doesn't count steps unless I hold the phone in front of me, in my pocket or case it doesn't work at all. Very disappointed because other wise I like the App.
g....@gmail.com <g....@gmail.com> #255
How hard can it be?
It`s soon 2 years since the first thread, please fix NOW!
It`s soon 2 years since the first thread, please fix NOW!
ch...@gmail.com <ch...@gmail.com> #256
Please can someone fix this, or at least reply to this thread so that we know what the story is- it should be possible to either keep the accelerometer off when the screen turns off, or keep it on when the screen turns off.
ov...@gmail.com <ov...@gmail.com> #257
Is there any update on this issue?
Does anyone know if it would be possible to use the android compass instead of accelerometer while the screen is off?
Does anyone know if it would be possible to use the android compass instead of accelerometer while the screen is off?
re...@googlemail.com <re...@googlemail.com> #258
This is a really bad issue because all sleep cycle alarm clocks do not work properly because of that.
Please fix :)
Thank you!
Please fix :)
Thank you!
ol...@gmail.com <ol...@gmail.com> #259
please fix that bug.
thank you
thank you
jc...@gmail.com <jc...@gmail.com> #260
This need to be fixed otherwise Android will not be able to be used on workout type applications.
Seriously, 2 years and no response?
Seriously, 2 years and no response?
di...@gmail.com <di...@gmail.com> #261
Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix...Please fix... htc desire no work...
sp...@gmail.com <sp...@gmail.com> #262
Sadly to see such a vast bug report and no feedback from the android devs. Bumped in such a behavior while using OpenStreetMaps tracking service in background.
pe...@gmail.com <pe...@gmail.com> #263
Please fix...
ed...@gmail.com <ed...@gmail.com> #264
I would really like this issue addressed.
It still does not work for me in gingerbread
It still does not work for me in gingerbread
ds...@gmail.com <ds...@gmail.com> #265
Please fix. I use a couple of always sensing applications!
[Deleted User] <[Deleted User]> #266
please fix
[Deleted User] <[Deleted User]> #267
ni...@gmail.com <ni...@gmail.com> #268
Please fix!!
ca...@gmail.com <ca...@gmail.com> #269
is this a joke or what? this issue was mentioned in 2009 and still no solution about it. very disappointing, sincerely, very DISAPPOINTING
vi...@gmail.com <vi...@gmail.com> #270
I agree with carlosen this is freaking stuppid, I used the pedometer with the screen off with my xperiax10 (android 2.1) but now that i upgrade to 2.3 it stop working! what a heck is going on here, this is getting worst?
[Deleted User] <[Deleted User]> #271
Problem still present on Droid X2 at android 2.3.3
ma...@gmail.com <ma...@gmail.com> #272
I'm on Android HTC Legend 2.2.
I tried with Wakelock/PowerManager and Broadcast.
Doesn't work.
I tried with Wakelock/PowerManager and Broadcast.
Doesn't work.
fa...@gmail.com <fa...@gmail.com> #273
In my IamHERE by exooc application I'm waking GPS based on accelerometer...
on samsung galaxy S 2.2.1 its working even when screen is off...
however on my other testing device T MOBILE MOVE (i.e.Alcatel MOVE) 2.2.2 its not working when screen is off....
Because i did tests also on other devices I found out other problems like motorolas do not fire events when x y z are all 0 they stop issuing events samsungs do send events with 0 movement as requested.... due to these inconsistencies in android Iam switching basic movement detection to BTS ID cells. I hope wireless will at least work when screen is off :)
on samsung galaxy S 2.2.1 its working even when screen is off...
however on my other testing device T MOBILE MOVE (i.e.Alcatel MOVE) 2.2.2 its not working when screen is off....
Because i did tests also on other devices I found out other problems like motorolas do not fire events when x y z are all 0 they stop issuing events samsungs do send events with 0 movement as requested.... due to these inconsistencies in android Iam switching basic movement detection to BTS ID cells. I hope wireless will at least work when screen is off :)
ko...@gmail.com <ko...@gmail.com> #274
please, please, please fix.
ri...@gmail.com <ri...@gmail.com> #275
please fix this. this bug also manifests in the Motorola atrix.
sc...@gmail.com <sc...@gmail.com> #276
If it was a bug they would have fixed it by now right? Have they confirmed that we will never be able to do this?
su...@gmail.com <su...@gmail.com> #277
[Deleted User] <[Deleted User]> #278
this is ridiculous, i'm using 2.3.4 and the problem is still EXISTED!!!! GOOGLE, have you tested this problem clearly before you change your status to release?
cm...@gmail.com <cm...@gmail.com> #279
I'm in Eclipse. I have my phone(EVO 4g) connected. I run my sensor app. I hit the power button and the screen goes black. My logcat still shows Acceleometer readings and does so for as long as I let it. When I run the same app from the phone and not through Eclipse the sensor data stops after a few seconds of the screen being black.
I mention this because I feel there might be a hack available. If the Accel still sends signals when the screen is off and connected to PC but stops sending signals if the phone is not connected shouldn't there still be a way to make this work?
Tired of waiting for Google to fix this.
I mention this because I feel there might be a hack available. If the Accel still sends signals when the screen is off and connected to PC but stops sending signals if the phone is not connected shouldn't there still be a way to make this work?
Tired of waiting for Google to fix this.
dm...@gmail.com <dm...@gmail.com> #280
Please fix, the amount of apps it renders useless is ridiculous.
ba...@gmail.com <ba...@gmail.com> #281
HTC Desire 2.2. I really need this function.
st...@gmail.com <st...@gmail.com> #282
Its An okai system
po...@gmail.com <po...@gmail.com> #283
My Motorola Atrix MB860 with Android 2.2.2 has the same problem: g-sensor is not working when screen is off. Until this is fixed the AccuPedo (Pedometer) is virtually broken.
ke...@gmail.com <ke...@gmail.com> #284
This is not a bug in Android. The handset manufacturer decides whether they want to disable the accelerometers when the screen is off. Battery life is a big issue with consumers and many consumers will blame the handset if the battery drains too fast rather than the the app that may be causing it. Most applications that use the accelerometer don't need it when the screen is off so the handset manufacturer has decided to disable accelerometers when the screen is off. It is a poor decision, in my view, as there are innumerable ways for apps to drain power. Accelerometers use low power compared to GPS, which none disable, but it is a design decision not a bug. A handset that required the screen to be on for GPS tracking would annoy too many customers so it is not disabled. As demand increases for activity monitoring probably more handsets will be available without disabling accelerometers as well.
up...@gmail.com <up...@gmail.com> #285
Pragna Technologies provides best Online training and Class room training with real time consultant and projects. We make the candidates technically strong and challenging person to face the interview.Fast track, Normal track, Weekend batches with A/C Classrooms and small batches in size for effective learning. We provide placement services for qualified students. Lab Facility - 24/7 hours every day (Monday – Sunday).
SAP • ABAP •FICO• HR• MM• PP• SD• BASIS • BI/BO • WM •CRM
CLOUD COMPUTING-SALES FORCE, AUTO CAD, TALLY, SAS, TESTING TOOLS,
DATA STAGE, ORACLE APPS, SIEBEL,SHARE POINT,DYNAMICS,HYPERION,ORACLE RAC, ORACLE FUSION,ORACLE HRMS,PEOPLESOFT,TIBCO,LAMBORDI,ANDROID, ORACLE FLEXCUBE
Projects for B.Tech/MCA/MBA
B.Tech tutions
JAVA/.NET REAL TIME PROJECT WITH 100% PLACEMENT
AUTO CAD Projects
Our credentials from customers become our benchmarks. Our training methodologies are the best in the industry. We transfer the knowledge to the trainees in terms of why’s rather than just how’s. This orientation helps them to add real value to their employers.
Pragna has a well-established practice for Implementing Enterprise Wide Applications. The SAP Practice division provides Implementation, Upgrade, Training, Maintenance and Support Services.
Excited about us! Let’s get in touch. You can meet us at
Pragna Technologies,
Flat No. 308,309,310,Nilagiri Block,
Aditya Enclave,
Ameerpet,
Hyderabad – 500 038.
Andhra Pradesh, India.
Please feel free to talk to us for your consulting, development and training requirements.
Hello: +91 40 4003 6678
+91 40 6457 5775, +91- 9246212199
US no: +1 513 318 5902
For more details visit us atwww.pragna.info
www.pragnatechnologies.com
Mail: info@pragnatechnologies.com
SAP • ABAP •FICO• HR• MM• PP• SD• BASIS • BI/BO • WM •CRM
CLOUD COMPUTING-SALES FORCE, AUTO CAD, TALLY, SAS, TESTING TOOLS,
DATA STAGE, ORACLE APPS, SIEBEL,SHARE POINT,DYNAMICS,HYPERION,ORACLE RAC, ORACLE FUSION,ORACLE HRMS,PEOPLESOFT,TIBCO,LAMBORDI,ANDROID, ORACLE FLEXCUBE
Projects for B.Tech/MCA/MBA
B.Tech tutions
JAVA/.NET REAL TIME PROJECT WITH 100% PLACEMENT
AUTO CAD Projects
Our credentials from customers become our benchmarks. Our training methodologies are the best in the industry. We transfer the knowledge to the trainees in terms of why’s rather than just how’s. This orientation helps them to add real value to their employers.
Pragna has a well-established practice for Implementing Enterprise Wide Applications. The SAP Practice division provides Implementation, Upgrade, Training, Maintenance and Support Services.
Excited about us! Let’s get in touch. You can meet us at
Pragna Technologies,
Flat No. 308,309,310,Nilagiri Block,
Aditya Enclave,
Ameerpet,
Hyderabad – 500 038.
Andhra Pradesh, India.
Please feel free to talk to us for your consulting, development and training requirements.
Hello: +91 40 4003 6678
+91 40 6457 5775, +91- 9246212199
US no: +1 513 318 5902
For more details visit us at
Mail: info@pragnatechnologies.com
dg...@gmail.com <dg...@gmail.com> #286
Here's an improvement on Bruno's answer (Comment 46) that solved the problem for me.
I believe the reason there was mixed success reported was because he restarted the sensors immediately. If your broadcast receiver got the broadcast before whatever listener the device driver (?) had, then your restarting the sensors is promptly undone by that original SCREEN_OFF receiver. Instead, try restarting after a small delay using, for instance:
mHandler.postDelayed(new Runnable(){public void run(){restartSampling();}}, 100L);
The hope is that by the time you restart, the driver or whatever other code stopped the sensors has already done its damage, so you can now undo it.
Hope that helps.
-dgorur
I believe the reason there was mixed success reported was because he restarted the sensors immediately. If your broadcast receiver got the broadcast before whatever listener the device driver (?) had, then your restarting the sensors is promptly undone by that original SCREEN_OFF receiver. Instead, try restarting after a small delay using, for instance:
mHandler.postDelayed(new Runnable(){public void run(){restartSampling();}}, 100L);
The hope is that by the time you restart, the driver or whatever other code stopped the sensors has already done its damage, so you can now undo it.
Hope that helps.
-dgorur
be...@googlemail.com <be...@googlemail.com> #287
Has this been mended yet in Android phones?
jc...@gmail.com <jc...@gmail.com> #288
what kind of data are stored the the text file
th...@gmail.com <th...@gmail.com> #289
Did anybody has some issues with Galaxy S3? I am having trouble with Galaxy S3 while I am trying to record accelerometer data for my honor thesis.
li...@gmail.com <li...@gmail.com> #290
As far as I can tell this bug is still kicking around. The lock and restart doesn't work on LG devices...
lu...@gmail.com <lu...@gmail.com> #291
It seems to me that I am facing the same issue on the Samsung Ace2 Android 2.3.6, has anybody else the same experience on that device?
lu...@gmail.com <lu...@gmail.com> #292
I was googling the issue and found this list of devices which support/don't support the accelerometer in standby: http://www.saltwebsites.com/2012/android-accelerometers-screen-off .
pi...@gmail.com <pi...@gmail.com> #293
Xperia L doesn't work in standby with this app.
lo...@gmail.com <lo...@gmail.com> #294
Bq aquarius same problem, accelerometer in standby when screen off.
ju...@gmail.com <ju...@gmail.com> #295
Hey Google...Seriously??? How can that be hey? Got hearing issues or what?
Fix it already!!jeeeeeez it can't be really that hard!!!
Fix it already!!jeeeeeez it can't be really that hard!!!
se...@gmail.com <se...@gmail.com> #296
Why isn't this in the Compatibility Test Suite?
se...@gmail.com <se...@gmail.com> #297
[Comment deleted]
go...@umito.nl <go...@umito.nl> #298
Have 2.3 device Alcatel One Touch, it's sensor rate drops from 40hz to 2hz when screen turns of. I have PARTIAL_WAKELOCK and re-register sensors after 2s delay. Doesn't do anything. Very frustrating!
ca...@gmail.com <ca...@gmail.com> #299
Was this issue solved? or a fix?
ex...@gmail.com <ex...@gmail.com> #300
[Comment deleted]
vr...@gmail.com <vr...@gmail.com> #301
I think its device specific issue. We should ask manufacturers. Google doesn't handle drivers implementation. Refer other sites.
ch...@gmail.com <ch...@gmail.com> #302
Still broken. Some guy created a list of devices that work and don't work here (saltwebsites.com/2012/android-accelerometers-screen-off ). Maybe the issue is unsolvable due to the way Android 2.0 was touted as the battery-friendly version of Android.
jg...@gmail.com <jg...@gmail.com> #303
Welp! That list with the working phones is not correct. Nexus 5 has this problem (at least on Lollipop it does). Will try Nexus 6 or 9. Wtf google... put out a hardware specification for manufacturers already (even if only for your own phones).
to...@gmail.com <to...@gmail.com> #304
,หิิิอแฉปอก
ve...@gmail.com <ve...@gmail.com> #305
I write a service that records data from the accelerometer and gyroscope for research purpose,and I add the WakeLock to avoid CPU being dormant.But the onSensorChanged() function seems still not called randomly when the screen is off. In some trials it works perfectly while in most trials it fails so that the recorded data remains unchanged.My phone is MEIZU MX4 with Android 5.0.1.
I wonder whether this bug has been solved or fixed. I would appreciate a lot if anyone knows how to fix it and contact with me. Thanks.
I wonder whether this bug has been solved or fixed. I would appreciate a lot if anyone knows how to fix it and contact with me. Thanks.
hu...@gmail.com <hu...@gmail.com> #306
same problem with huawei hornor, and try solutions mentioned in this issue but don't work. I would appreciate a lot if anyone knows how to fix it and contact with me. Thanks.
hu...@gmail.com <hu...@gmail.com> #307
il...@gmail.com <il...@gmail.com> #308
hu...@gmail.com <hu...@gmail.com> #309
Are you the one that wrote #306?
il...@gmail.com <il...@gmail.com> #310
I also didn't comment anything and don't know what you're talking about
2018-01-18 10:49 GMT+01:00 <buganizer-system@google.com>:
2018-01-18 10:49 GMT+01:00 <buganizer-system@google.com>:
wb...@gmail.com <wb...@gmail.com> #311
What is this and why am I getting these emails
On Thu, Jan 18, 2018 at 3:49 AM <buganizer-system@google.com> wrote:
On Thu, Jan 18, 2018 at 3:49 AM <buganizer-system@google.com> wrote:
--
- William Boyle
- William Boyle
ch...@barricane.com <ch...@barricane.com> #312
ca...@gmail.com <ca...@gmail.com> #313
You get email updates if you've starred a discussion. I've never starred it, but somehow it's been starred. No idea what's going on.
zi...@gmail.com <zi...@gmail.com> #314
Wtf I never starred this. This is weird /Z
po...@gmail.com <po...@gmail.com> #315
sa...@gmail.com <sa...@gmail.com> #316
I never even knew about this page and now I'm getting e-mails as well. Looks like the "Google IssueTracker notification system" is broken.
si...@gmail.com <si...@gmail.com> #317
wb...@gmail.com <wb...@gmail.com> #318
--
- William Boyle
- William Boyle
hu...@gmail.com <hu...@gmail.com> #319
Weird. I just wanted to make sure that there hasn't been a security breach. It must be that if your email address started with the same two letters as another persons you have a chance of being notified as if you yourself were the one commenting. Anyway, I'm gonna unsubscribe now by unstarring this thread.
ma...@gmail.com <ma...@gmail.com> #320
There seems to be some kind of bug. I also got an email and have nothing to
do with this issue.
<buganizer-system@google.com> schrieb am Do., 18. Jän. 2018, 10:57:
do with this issue.
<buganizer-system@google.com> schrieb am Do., 18. Jän. 2018, 10:57:
lu...@gmail.com <lu...@gmail.com> #321
Seems that is a bug.. I got the same emails here and never subscribed to receive alerts about this issue.
ma...@gmail.com <ma...@gmail.com> #322
Why am I receiving this? Can you remove me?
On Thu, Jan 18, 2018 at 10:45 AM, <buganizer-system@google.com> wrote:
On Thu, Jan 18, 2018 at 10:45 AM, <buganizer-system@google.com> wrote:
cr...@gmail.com <cr...@gmail.com> #323
Never stared this issue! Wtf Google!
us...@gmail.com <us...@gmail.com> #324
I am also receiving this alert in my mailbox even if I have no connection whatsoever with this project (or even issuetracker at the first place!).
I am smelling a HUGE bug from Google coming...
I am smelling a HUGE bug from Google coming...
rw...@gmail.com <rw...@gmail.com> #325
same here, just got an email about this issue that i never tracked.
good job google.
tip for everyone else who don't know this: click the yellow star on the top of the page. it will unstar the issue and you won't get further emails.
good job google.
tip for everyone else who don't know this: click the yellow star on the top of the page. it will unstar the issue and you won't get further emails.
pe...@gmail.com <pe...@gmail.com> #326
Same here, I got an email and I have no idea what this is about.
I think someone used the wrong contacts group.
I'm not part of a debugging group or not an employee/participant of google
or any SW company for that matter.
On Thu, 18 Jan 2018 at 11:27 <buganizer-system@google.com> wrote:
I think someone used the wrong contacts group.
I'm not part of a debugging group or not an employee/participant of google
or any SW company for that matter.
On Thu, 18 Jan 2018 at 11:27 <buganizer-system@google.com> wrote:
pr...@gmail.com <pr...@gmail.com> #327
This could be related to i think a sleep tracking app from back in the day, I think the OP was the developer, I read somewhere to post in here to show Google that there is demand to keep the accelerometer alive with the screen turned off. That would enable the app to continue to work without the screen being turned on.
ma...@gmail.com <ma...@gmail.com> #328
ra...@gmail.com <ra...@gmail.com> #329
Remove
ch...@gmail.com <ch...@gmail.com> #330
LOL go onto the website and remove the Star next to the issue number, that will make you unfollow. I doubt that replying "unsubscribe" or "remove" will do the trick... Good luck!
jc...@gmail.com <jc...@gmail.com> #331
jc...@gmail.com <jc...@gmail.com> #332
mf...@gmail.com <mf...@gmail.com> #333
It is a google bug, probably. I have never stared it too.
2018-01-18 10:07 GMT-03:00 <buganizer-system@google.com>:
2018-01-18 10:07 GMT-03:00 <buganizer-system@google.com>:
pe...@gmail.com <pe...@gmail.com> #334
go...@gmail.com <go...@gmail.com> #335
Just came here to un-star a conversation I never starred to begin with. I've never used this Google feature nor knew it existed till I get an email stating I did something I've never done. This is ridiculous. And I had to accept the terms of use for something I didn't ever want to use, except to get this mess out my inbox. WTF Google!
ch...@gmail.com <ch...@gmail.com> #336
Who are you and why am I getting dozens of your emails?
-------- Original message --------From: buganizer-system@google.com Date: 1/18/18 8:47 AM (GMT-05:00) To: b-system+-1055561219@google.com Cc: chefrhf13@gmail.com Subject: Re: Issue 36908894 : OnSensorChanged() is no longer called in standby mode since last Firmware upgrade.
Replying to this email means your email address will be shared with the team that works on this product.
https://issuetracker.google.com/issues/36908894
Changed
go...@gmail.com added comment #335 :
Just came here to un-star a conversation I never starred to begin with. I've never used this Google feature nor knew it existed till I get an email stating I did something I've never done. This is ridiculous. And I had to accept the terms of use for something I didn't ever want to use, except to get this mess out my inbox. WTF Google!
_______________________________
Reference Info: 36908894 OnSensorChanged() is no longer called in standby mode since last Firmware upgrade.
component: Android Public Tracker > Framework
status: Fixed
reporter: ja...@gmail.com
assignee: jo...@google.com
cc: ja...@gmail.com
type: Bug P3 S3
hotlist: [AOSP] Released, [AOSP] assigned
AOSP ID: 3708
Generated by Google IssueTracker notification system
You're receiving this email because you are subscribed to updates on Google IssueTracker issue 36908894 where you have the role: starred.
-------- Original message --------From: buganizer-system@google.com Date: 1/18/18 8:47 AM (GMT-05:00) To: b-system+-1055561219@google.com Cc: chefrhf13@gmail.com Subject: Re:
Replying to this email means your email address will be shared with the team that works on this product.
Changed
go...@gmail.com added
Just came here to un-star a conversation I never starred to begin with. I've never used this Google feature nor knew it existed till I get an email stating I did something I've never done. This is ridiculous. And I had to accept the terms of use for something I didn't ever want to use, except to get this mess out my inbox. WTF Google!
_______________________________
Reference Info: 36908894 OnSensorChanged() is no longer called in standby mode since last Firmware upgrade.
component: Android Public Tracker > Framework
status: Fixed
reporter: ja...@gmail.com
assignee: jo...@google.com
cc: ja...@gmail.com
type: Bug P3 S3
hotlist: [AOSP] Released, [AOSP] assigned
AOSP ID: 3708
Generated by Google IssueTracker notification system
You're receiving this email because you are subscribed to updates on Google IssueTracker
sa...@gmail.com <sa...@gmail.com> #337
Another person here who has somehow received this email despite never starring this!
ch...@gmail.com <ch...@gmail.com> #338
UNSUBSCRIBE ME IMMEDIATELY
-------- Original message --------From: buganizer-system@google.com Date: 1/18/18 10:53 AM (GMT-05:00) To: b-system+-1055561219@google.com Cc: chefrhf13@gmail.com Subject: Re: Issue 36908894 : OnSensorChanged() is no longer called in standby mode since last Firmware upgrade.
Replying to this email means your email address will be shared with the team that works on this product.
https://issuetracker.google.com/issues/36908894
Changed
sa...@gmail.com added comment #337 :
Another person here who has somehow received this email despite never starring this!
_______________________________
Reference Info: 36908894 OnSensorChanged() is no longer called in standby mode since last Firmware upgrade.
component: Android Public Tracker > Framework
status: Fixed
reporter: ja...@gmail.com
assignee: jo...@google.com
cc: ja...@gmail.com
type: Bug P3 S3
hotlist: [AOSP] Released, [AOSP] assigned
AOSP ID: 3708
Generated by Google IssueTracker notification system
You're receiving this email because you are subscribed to updates on Google IssueTracker issue 36908894 where you have the role: starred.
-------- Original message --------From: buganizer-system@google.com Date: 1/18/18 10:53 AM (GMT-05:00) To: b-system+-1055561219@google.com Cc: chefrhf13@gmail.com Subject: Re:
Replying to this email means your email address will be shared with the team that works on this product.
Changed
sa...@gmail.com added
Another person here who has somehow received this email despite never starring this!
_______________________________
Reference Info: 36908894 OnSensorChanged() is no longer called in standby mode since last Firmware upgrade.
component: Android Public Tracker > Framework
status: Fixed
reporter: ja...@gmail.com
assignee: jo...@google.com
cc: ja...@gmail.com
type: Bug P3 S3
hotlist: [AOSP] Released, [AOSP] assigned
AOSP ID: 3708
Generated by Google IssueTracker notification system
You're receiving this email because you are subscribed to updates on Google IssueTracker
ur...@gmail.com <ur...@gmail.com> #339
Please note that I am not related to the conversation and should not
recived these emails.
Piotr Urbanowicz
2018-01-18 17:07 GMT+01:00 <buganizer-system@google.com>:
recived these emails.
Piotr Urbanowicz
2018-01-18 17:07 GMT+01:00 <buganizer-system@google.com>:
--
Piotr Urbanowicz
ma...@gmail.com <ma...@gmail.com> #340
Go to https://issuetracker.google.com/issues?q=star:true and unstar any issues you don't care about. Seems like a system glitch added 1400 stars to this issue.
lj...@gmail.com <lj...@gmail.com> #341
Manually unstarring is not entirely acceptable, considering that doing ANYTHING on this tracker now requires "accepting" some terms. People who have never starred this issue in the first place should have this obvious mistake undone for them, and their "acceptance" canceled if they only did it because they had no other choice in order to unstar this issue and stop receiving unwanted spam.
pe...@gmail.com <pe...@gmail.com> #342
Please remove me from the cc list on this issue - it has nothing to do with
me.
On 18 January 2018 at 17:30, <buganizer-system@google.com> wrote:
me.
On 18 January 2018 at 17:30, <buganizer-system@google.com> wrote:
ch...@gmail.com <ch...@gmail.com> #343
STOP FUCKING EMAILING ME
From: buganizer-system@google.com
Sent: Thursday, January 18, 2018 12:25 PM
To: b-system+-1055561219@google.com
Cc: chefrhf13@gmail.com
Subject: Re: Issue 36908894 : OnSensorChanged() is no longer called in standbymode since last Firmware upgrade.
Replying to this email means your email address will be shared with the team that works on this product.
https://issuetracker.google.com/issues/36908894
Changed
ma...@gmail.com added comment #340 :
Go tohttps://issuetracker.google.com/issues?q=star:true and unstar any issues you don't care about. Seems like a system glitch added 1400 stars to this issue.
_______________________________
Reference Info: 36908894 OnSensorChanged() is no longer called in standby mode since last Firmware upgrade.
component: Android Public Tracker > Framework
status: Fixed
reporter: ja...@gmail.com
assignee: jo...@google.com
cc: ja...@gmail.com
type: Bug P3 S3
hotlist: [AOSP] Released, [AOSP] assigned
AOSP ID: 3708
Generated by Google IssueTracker notification system
You're receiving this email because you are subscribed to updates on Google IssueTracker issue 36908894 where you have the role: starred.
From: buganizer-system@google.com
Sent: Thursday, January 18, 2018 12:25 PM
To: b-system+-1055561219@google.com
Cc: chefrhf13@gmail.com
Subject: Re:
Replying to this email means your email address will be shared with the team that works on this product.
Changed
ma...@gmail.com added
Go to
_______________________________
Reference Info: 36908894 OnSensorChanged() is no longer called in standby mode since last Firmware upgrade.
component: Android Public Tracker > Framework
status: Fixed
reporter: ja...@gmail.com
assignee: jo...@google.com
cc: ja...@gmail.com
type: Bug P3 S3
hotlist: [AOSP] Released, [AOSP] assigned
AOSP ID: 3708
Generated by Google IssueTracker notification system
You're receiving this email because you are subscribed to updates on Google IssueTracker
ch...@gmail.com <ch...@gmail.com> #344
STOP FUCKING EMAILING ME
From: buganizer-system@google.com
Sent: Thursday, January 18, 2018 12:32 PM
To: b-system+-1055561219@google.com
Cc: chefrhf13@gmail.com
Subject: Re: Issue 36908894 : OnSensorChanged() is no longer called in standbymode since last Firmware upgrade.
Replying to this email means your email address will be shared with the team that works on this product.
https://issuetracker.google.com/issues/36908894
Changed
pe...@gmail.com added comment #342 :
Please remove me from the cc list on this issue - it has nothing to do with
me.
On 18 January 2018 at 17:30, <buganizer-system@google.com> wrote:
From: buganizer-system@google.com
Sent: Thursday, January 18, 2018 12:32 PM
To: b-system+-1055561219@google.com
Cc: chefrhf13@gmail.com
Subject: Re:
Replying to this email means your email address will be shared with the team that works on this product.
Changed
pe...@gmail.com added
Please remove me from the cc list on this issue - it has nothing to do with
me.
On 18 January 2018 at 17:30, <buganizer-system@google.com> wrote:
_______________________________
Reference Info: 36908894 OnSensorChanged() is no longer called in standby mode since last Firmware upgrade.
component: Android Public Tracker > Framework
status: Fixed
reporter: ja...@gmail.com
assignee: jo...@google.com
cc: ja...@gmail.com
type: Bug P3 S3
hotlist: [AOSP] Released, [AOSP] assigned
AOSP ID: 3708
Generated by Google IssueTracker notification system
You're receiving this email because you are subscribed to updates on Google IssueTracker
al...@gmail.com <al...@gmail.com> #345
tw...@gmail.com <tw...@gmail.com> #346
FUCK OFF WITH THIS BULLSHIT. FUUUCK. REMOVE FROM THIS FUCKING SHIT FUCK. FUCK!!!!!!!!!!!!!!!!!!!!!!!
Skickat från min iPhone
Skickat från min iPhone
uh...@gmail.com <uh...@gmail.com> #347
Why am I on this list? Please remove me. There are apparently many people
on this list who don't belong there. Please remove us all at once. Thanks!
Bob Finn
finn@nasw.org
925-708-0002
On Thu, Jan 18, 2018 at 10:01 AM, <buganizer-system@google.com> wrote:
on this list who don't belong there. Please remove us all at once. Thanks!
Bob Finn
finn@nasw.org
925-708-0002
On Thu, Jan 18, 2018 at 10:01 AM, <buganizer-system@google.com> wrote:
ph...@gmail.com <ph...@gmail.com> #348
To those who don't want to be on this thread - try unclicking the gold star at the top of the thread. i don't know if it'll work but I'm hopeful!
ry...@gmail.com <ry...@gmail.com> #349
uh...@gmail.com <uh...@gmail.com> #350
Not seeing any gold star. And I'm still getting these messages despite my
request to be removed.
Bob Finn
finn@nasw.org
925-708-0002
On Thu, Jan 18, 2018 at 12:01 PM, <buganizer-system@google.com> wrote:
request to be removed.
Bob Finn
finn@nasw.org
925-708-0002
On Thu, Jan 18, 2018 at 12:01 PM, <buganizer-system@google.com> wrote:
ja...@gmail.com <ja...@gmail.com> #351
Stop fucking emailing me!!!!!!!!!!!
Sent from my iPhone
On 18 Jan 2018, at 20:05, <buganizer-system@google.com> <buganizer-system@google.com> wrote:
Replying to this email means your email address will be shared with the team that works on this product.
https://issuetracker.google.com/issues/36908894
Changed
uh...@gmail.com added comment #350 :
Not seeing any gold star. And I'm still getting these messages despite my
request to be removed.
Bob Finn
finn@nasw.org
925-708-0002
On Thu, Jan 18, 2018 at 12:01 PM, <buganizer-system@google.com> wrote:
Sent from my iPhone
On 18 Jan 2018, at 20:05, <buganizer-system@google.com> <buganizer-system@google.com> wrote:
Replying to this email means your email address will be shared with the team that works on this product.
Changed
uh...@gmail.com added
Not seeing any gold star. And I'm still getting these messages despite my
request to be removed.
Bob Finn
finn@nasw.org
925-708-0002
On Thu, Jan 18, 2018 at 12:01 PM, <buganizer-system@google.com> wrote:
_______________________________
Reference Info: 36908894 OnSensorChanged() is no longer called in standby mode since last Firmware upgrade.
component: Android Public Tracker > Framework
status: Fixed
reporter: ja...@gmail.com
assignee: jo...@google.com
cc: ja...@gmail.com
type: Bug P3 S3
hotlist: [AOSP] Released, [AOSP] assigned
AOSP ID: 3708
Generated by Google IssueTracker notification system
You're receiving this email because you are subscribed to updates on Google IssueTracker
al...@gmail.com <al...@gmail.com> #352
I am glad that this issue was fixed. What version was it fixed in again?
ch...@gmail.com <ch...@gmail.com> #353
Good Stuff! the Gold star worked for me!
sa...@gmail.com <sa...@gmail.com> #354
How google fit app get Sensor Values when phone is locked. and our apps don't get sensor values when phone is locked.
ma...@gmail.com <ma...@gmail.com> #355
I will try and fix the issue
wb...@gmail.com <wb...@gmail.com> #357
--
- William Boyle
- William Boyle
ma...@gmail.com <ma...@gmail.com> #358
O shit I don't think this is the alcohol annomis trending group chat hey I see nothing hear nothing or niether speak nothing.ni te vi ni te conosko is my model after If I run into people..I'm not that popular and still trying to fit in to my right crowd.im very private and one day hope to be rewarded for my loyalness free of charge batteries not included...se te quiere de gratis.
ma...@gmail.com <ma...@gmail.com> #359
I feel like I'm invading lol not feeling welcomed I'm out..u guys should stat this is u guys room in gonna find me another group one the alcoholic one
Description
until recently this has worked fine when the device was in standby. It has
been regularly tested on HTC G1 and Magic and tested specifically to work
under these conditions, but it seems that a recent Firmware upgrade may
have broken this (my Magic stopped working in this scenario since the last
firmware I think, a few weeks ago). I have recently acquired an HTC Hero
and this also fails to get the notifications.
What seems to occur now, is that the SensorEventListener.OnSensorChanged()
messages are not occuring at all in standby, and they continue once the
device is switched back on.
The application also checks for other changes such as GPS location changes,
and these continue to work in standby, so I would expect the sensor
messages to also continue to get through as they did previously, and the
SDK documentation doesn't state it shouldn't work in standby.
This change has effectively broken my Android Market application, which is
designed to protect the device from being moved/removed, and therefore this
renders its functionality seriously compromised once the device goes into
standby. Could someone advise when this will be fixed, as it is starting
to affect my sales. Thank you.