Android-sensors tag unites questions that are connected with different hardware sensors that are embedded into Android devices (barometer, accelerometer, magnetometer, microphone, camera and so on)
1
vote
1answer
281 views
getDefaultSensor(Sensor.TYPE_ACCELEROMETER).getMaximumRange()
If I call
SensorManager mgr = (SensorManager) this.getSystemService(SENSOR_SERVICE);
String text = "The maximum G Force that this device can detect is: " + ...
0
votes
1answer
29 views
Checking long cover of sensor
I've got some probmel with checking long time cover of my sensor (which is used to turn off the screen while phone is near ear). I want to detect short and long cover of this sensor (for example by my ...
0
votes
1answer
83 views
Camera Invalidate() can't work in onSensorChanged method
I have a Variable "azimuth_angle"
I hope when i touch the screen and change the direction
the Variable "azimuth_angle" will be decrease
in my code
touch the screen the variable can decrease
but ...
0
votes
1answer
244 views
android OnSensorChanged() slow response
I have code implemented like this:
//register sensor in OnResume
mSensorManager.registerListener(this, accelerometer, SensorManager.SENSOR_DELAY_UI);
mSensorManager.registerListener(this, ...
4
votes
1answer
89 views
How to know when the android phone is moving?
Well,This thing has bugged me for days.
I have developed an app that checks that the person is moving or not to check his activity.
I have used accelerometer for that because gps might not work under ...
1
vote
1answer
181 views
What happens when onSensorChanged() in called before it can finish the current execution?
This is my function.
public void onSensorChanged(SensorEvent event)
{
if (event.sensor.getType() == Sensor.TYPE_LINEAR_ACCELERATION)
{
//DO A JOB...
...
1
vote
1answer
280 views
How to check if an android phone is moved without gps
we want to build an Android app.
For the idea we have, we need to know, if an user moved or not.
It is unimportant, if the user moved 3 or 10 meters (10 - 30 feet) but it should be more then a ...
0
votes
1answer
517 views
How to register or unregister a sensor event listener on click of a button?
I am using the following code to register and unregister SensorEventListener.
//Get the Toggle Button
final ToggleButton tb=(ToggleButton) findViewById(R.id.activate);
//Listener ...
0
votes
2answers
110 views
Get only 1 event from sensor
I'm trying to get only 1 event from orientation sensor.
My code is:
@Override
public void onSensorChanged(SensorEvent event) {
Log(event);
unregisterSensor(...);
}
Then in a thread every 1000ms I ...
1
vote
1answer
535 views
Android accelerometer max values
So I have been searching for about 3 hours and I have not come up with a good answer/solution.
My Question is:
Why am I getting a max acceleration value of only about 34 m/s^2 or about 3.5 Gs ...
0
votes
0answers
126 views
Handler in SensorManager.RegisterListener
What is the Handler parameter in SensorManager.RegisterListener(SensorEventListener listener, Sensor sensor, int rate, Handler handler) for? Are the events going to be send through this Handler as ...
0
votes
1answer
105 views
How to get sensor values for Android
I am currently building 3.1 kernel for android (tegra/goldfish branch). I would like to write a program in C that gets the sensor values. I do have inc/hardware/sensors.h and some relevant files but I ...
1
vote
1answer
1k views
How check if a specific sensor exists on a device?
I'm developing an android app that uses Sensors and I would like to know the best way to detect if a device has a specific sensor, let's say, a Proximity Sensor.
Also, is there any "filter" that can ...
1
vote
1answer
593 views
How to detect Upside down Orientation in android?
In my android app i have panorama image and i am rotating this image according to phones motion using TYPE_ORIENTATION sensor it is working fine for both landscape and potrait. Here is the code for ...
0
votes
1answer
90 views
Determine height and width of billboard using Android sensors [closed]
In the Google Play store there is an app titled Smart Measure that can be used to measure the height and width of an object. I would like to integrate this functionality into a survey app I am ...
5
votes
1answer
618 views
Android: Improve sensor sampling rate by use of NDK and polling
I want to write an application that reads as many sensor vaulues (per time) as possible from different sensors (GPS, Acc, Gyro, Compass). So I have to investigate if there is an advantage in using ...
1
vote
2answers
1k views
How to obtain quaternion from rotation matrix in Android?
I'm trying to obtain the orientation of an android device, and I need it to be in a quaternion structure (float[4] basically).
What I have now is this:
if (event.sensor.getType() == ...
0
votes
1answer
90 views
best sensor selection for ar application
Hello i want to ask which is the best sensor i can use for an augmented-reality application? my augmented reality app is using the mobiles camera and finds points of interest in the live view. i want ...
0
votes
1answer
124 views
shake not working beyond certain value
I want to measure a big shake(Eg: Measure when bike or car gets into accident. I want to measure that phone shake). I have code for play audio when my mobile is shaken. But when I changed ...
2
votes
1answer
762 views
Android incomming outgoing call recording
i am using below code to record incomming and outgoing call conversation in android phone but
this code only works when the mic or speaker is on and user disable speaker phone my code will not ...
0
votes
1answer
149 views
Implementing SensorEventListener in a BroadcastReceiver… is it possible?
Why can't I have a class extending BroadcastReceiver and implementing SensorEventListener? This class receives alarm intents set in my application.
I have a class instance variable that is set inside ...
0
votes
0answers
154 views
Light sensor # onSensorChanged is firing only once
I want to get the different light sensor values when I wave my hand above my Samsung Galaxy S. But the lightsensor#onSensorChanged seems to be firing only once. My code is :
Variables :
private ...
0
votes
0answers
145 views
Android Convert device coordinate system to “user” coordinate system
My question is similar to Changing sensor coordinate system in android
I want to be able to compare a user's movements with each other regardless of device orientation. So that when the users holds ...
1
vote
0answers
79 views
Positioning of device towards a target like Panorama images app in Android
I hope most of you have used the Panorama Image option in Camera app. They ask/force the user to move the device in one direction e.g. if you take 1st image then you move to 2nd image and then it will ...
1
vote
1answer
103 views
magnetometer conversion factor
I am working on sensor HAL in Android ICS,specifically Magnetometer.
I am referring to a code where a (+/-)CONVERT_M is multiplied to all the axis.
Where CONVERT_M = (1.0f/16.0f)
Based on what the ...
0
votes
2answers
376 views
Sampling Android Sensors
Is there a way to get the values from an Android sensor say every 5 minutes?
For example, is there a way I can poll the AMBIENT_TEMPERATURE sensor every 5 minutes regardless of there being a change ...
0
votes
1answer
653 views
Sensor.TYPE_ROTATION_VECTOR returns null
When I call SensorManager.getDefaultSensor(Sensor.TYPE_ROTATION_VECTOR)on my device it returns null. I know this is a virtual sensor (doing some clever maths to take values from real sensors). I it ...
2
votes
3answers
708 views
How to log data from Android Motion Sensors at a fixed rate
I'm learning the Basics of Android programming.
I have a simple android test application in which i log the accelerometer,magnetometer and the orientation data to an external file while also ...
0
votes
1answer
104 views
Setting one element in array changes others
I checked other similar tags with almost same title. Those answers were not relevant
When setting element at one position of array, both the elements have the same value.
public class LogActivity ...
1
vote
1answer
481 views
Android screen orientation differs between devices
Description
I have an activity which displays the camera preview on a surface view. I do not want it to be restarted on orientation changes (as its constantly scanning for QR codes), so the ...
2
votes
2answers
214 views
Can't read from Sensors in Android
I have an app that I want to incorporate Sensor data into. My first step has been to create an app that just reads the sensor data and displays it on screen. Most of the research I've done points to ...
1
vote
0answers
89 views
AccelerometerPlayActivity source transform
Plz Answer to me.
I'd like to transform this activity.
Que 1. one Ball Image -> variety of Ball Image
Que 2. Rect Collision -> Round Collision
public void resolveCollisionWithBounds() {
...
0
votes
0answers
108 views
Android Sensor Performance With Phonegap
Should I expect significant (or any) performance differences between a native Android and a Phonegap-based in an application that heavily uses the Android Sensor (accelerometer, gyroscope etc.)?
...
0
votes
1answer
238 views
SensorEvent.timestamp date conversion issue
I'm trying to convert event timestamp in a date, my code:
Calendar c = Calendar.getInstance();
c.setTimeInMillis(event.timestamp/1000000);//time in ms (timestamp is in ns)
System.out.println((new ...
-2
votes
2answers
138 views
Get accelerometer and Location values without listener
I'd like to simply get these values whenever I want and not on events...is it possible?
I can't see any method getXValue(), getLatitude(),ecc ...
0
votes
0answers
206 views
How to disable Orientation Sensor during “Shake” action
I'm developing an app which use pitch/roll values and I also want to implement a "shake" functionality. With code below, I toast every of desired actions but, when I shake phone it sometimes catch ...
0
votes
1answer
125 views
Android Sensor converting handle / type
I'm using the proximity sensor in my app, and when I register the sensor I can see in the LogCat this line:
07-11 17:14:26.049: E/SensorManager(26240): registerListener :: handle = 4 name= CM3663 ...
1
vote
2answers
1k views
Get Android rotation angle in x-axis
I'm experimenting with some Android functions. Right now, I'm trying to get the rotation angle of the device, so when I show a happy face bitmap on a canvas, it always looks "straight".
All I would ...
1
vote
1answer
342 views
Android: Is there a way to obtain altitude aside from Location.getAltitude()? (I've heard using Sensor)
Is there a way to obtain altitude aside from Location.getAltitude()?
I've heard using Sensor but don't have idea and can't find on net.
UPDATES1
I found SensorManager.getAltitude(float, float) using ...
1
vote
0answers
177 views
android uses-feature when?
I've a problem in understanding one thing. I know that the uses-feature in android is not required in developing application, but i want to prevent some users that haven't a kind of feature, to ...
0
votes
0answers
80 views
How to differentiate the car types by programming?
I would like to differentiate the type of cars (SUV, saloon, MPV, bus, taxi[speical case])which pass by (slowly) a place.
One option could probably be using of predefined car type images to match ...
4
votes
3answers
1k views
SCREEN_ORIENTATION_LANDSCAPE upside down - Why?
I am using the following code to set orientation locking per user preference:
private void doLock(boolean locked) {
if (locked) {
int o = getResources().getConfiguration().orientation;
...
0
votes
1answer
90 views
Obtaining sensors data while the screen is off (Android 4.0+)
As far as I know on Android devices there is no 100%-sure way to get the data from device sensors while the screen is off. There are some workarounds, but they do not work always. But all the posts I ...
1
vote
1answer
192 views
Measuring distance travelled with android using Sensor Event Listener
I want to measure distance traveled using android with its sensor. Could you give me an idea how to start this project? Or give me any tutorials that would help me do this.
4
votes
2answers
10k views
What is the difference between “gravity” and “acceleration” sensors in Android?
What is the difference between gravity and acceleration sensors in Android? From my point of view the physical value is the same in both cases.
Which one measures the force acting on unit mass inside ...
0
votes
0answers
138 views
How sensors accuracy are calculated in Android?
I would like to know how sensors accuracy, returned by the method onAccuracyChanged(Sensor sensor, int accuracy), are calculated. I tried to look at the source code, but I couldn't find the right ...
1
vote
2answers
236 views
Critical section doesn't work in onSensorChanged()
I'm new to Android development. I'm building a simple Android application which analyzes accelerometer sensor data and plays a sound with MediaPlayer. Code for SensorEventListener implementation:
...
2
votes
2answers
420 views
Sensor Orientiation -> GLRotation doesn't work properly
I want to use the Android orientation sensor data for my GLES camera - giving it the rotation matrix. I found a very good example here:
How to use onSensorChanged sensor data in combination with ...
0
votes
0answers
350 views
Continuous storing sensor data in files
I´m programming a service to recollect data in real time from several sensors and write to several files. I do not want to overload the system with the service, I´m trying to have the best ...
0
votes
4answers
189 views
Android sensor unregistration
I am confused about the unregistration of sensor listener. Suppose I forget to unregister a listener. What happens after the application is destroyed?
Will the Android OS keep sending message to the ...

