Tagged Questions
-1
votes
2answers
186 views
How can I check programmatically that user has an interaction with their Android phone?
How can I check programmatically to see if the user has interacted with an Android Phone's touch screen or keypad? Interaction may be a touch or key press event. Will creating a service for this will ...
0
votes
2answers
119 views
exception with SENSOR_ACCELEROMETER
I want to register a SENSOR_ACCELEROMETER in a service, but it turns out to be a nullexception.Following is my code:
asensor = new AccerSensor(context);//the sensoreventlistener
Log.i("wogua", ...
2
votes
2answers
213 views
Service or Asynctask for sampling sensors in Android?
I've to acquire data from various sensors like accelerometer, gyroscope, microphone and GPS.
The sensing action shouldn't be continuous, but rather single short intervals of sampling should be ...
0
votes
1answer
128 views
Problem with sensors in a service
i've a foreground service that read Accelerometer and Orientation sensors, and send a sms when the phone it's moved.
It works fine when the display is turned on, but when not it not works or it send ...
