0
votes
1answer
27 views

Orientation differences between Galaxy Tab and Transformer

I developed an Augmented Reality application using the front-camera and the min3d library. This application works fine on the Samsung Galaxy Tab 10,1 (first generation), running Android 4.0.4 But ...
4
votes
1answer
154 views

Weird behaviour of the magnetic field measurements while rotating the device

The situation: I'm trying to create an indoor localisation system with the use of the magnetic field variations inside a building via fingerprinting. As a sensor I'm using my mobile phone a Galaxy ...
1
vote
3answers
464 views

Inconsistent orientation sensor values on Android for azimuth/yaw and roll

I’m having trouble getting good orientation sensor readings. The sensor readings seemed unreliable, so I tested my code against two free sensor test apps (Sensor Tester (Dicotomica) and Sensor ...
-1
votes
1answer
119 views

Not able to fetch correct degree from getOrientation method

I am trying to get the tilt angel from Android orientation. The values which i am getting from SensorManager.getOrientation(mRotationMatrix, mValuesOrientation) is not degrees.... On putting the ...
3
votes
2answers
328 views

android: why getrotationmatrix return false?

I want to get the orientation of my phone and I have using this code that I find lot of people using it. this is the code public void onSensorChanged(SensorEvent event) { //if the data sensor ...
0
votes
0answers
146 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
1answer
486 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 ...
1
vote
0answers
95 views

Screenrotation in combination with orientation change

What I want to build; App ALWAYS is in landscape mode (top of phone to the left!). When the user flips the phone (over Y-axis, so user is looking at it's back, screen is in front of person sitting ...
1
vote
2answers
235 views

Problems getting device orientation data for android

I'm new to the forum and to android development. I've been trying to get device orientation data but seem to be doing something wrong. I've been following this link's tutorial: ...
4
votes
1answer
2k views

Compass direction is different depending on phone orientation

My augmented reality app needs the compass bearing of the camera view, and there's plenty of examples of getting the direction from the sensormanager. However I'm finding the resulting value ...
1
vote
0answers
309 views

Use accelerometer in landscape mode

So I'm pretty new to Android programming and my current project involves moving a picture left and right by tilting. It works fine but I can't figure out how to make the accelerometer useful in ...
4
votes
1answer
7k views

How to make an accurate compass on android

my android application shows the direction of a particular place in the world and therefore in needs to get the compass degree. This is the code I've been using to calculate the degrees: public void ...
4
votes
1answer
3k views

Android natural sensor orientation help

I am trying to accomplish Reto Meier's recommended way for keeping the screen orientation from changing. The slides from his talk during Google IO (see #23) can be found in Android Protips: Where to ...
0
votes
1answer
2k views

How do the Android accelerometer and magnetic sensors contribute to orientation information?

I know how to get an orientation vector from the accelerometer and the magnetic field sensor, but I don't understand why data from the magnetic field sensor is needed. Could someone explain why? On ...
1
vote
1answer
4k views

How to get OrientationEventListener.onOrientationChanged() to be called only when UI rotates [duplicate]

Possible Duplicate: How do I detect screen rotation Hello, All I want to do, is to detect a rotation change in my application. However, I think I found a bug in the Android system. If you ...
2
votes
1answer
289 views

Determine building your Android device is pointing at

I have a MapView in which I am drawing buildings on using geopoints. Currently, the app determines the closest building to you by just checking your long/lat and comparing to the buildings; but what I ...