OK I have an app the uses the magneometer to display a graphic that rotates with the phone (basically a compass).
I have a check that subtracts 90 degrees if it is in landscape mode, but this only works if it is in the default landscape mode. With 2.1 we now have a universal landscape that you can rotate both ways so I now don't know how to figure out which landscape mode it is in.
Here is my code:
int test = getResources().getConfiguration().orientation;
if(Configuration.ORIENTATION_LANDSCAPE == test) {
rotation = -90f;
}
else {
rotation = 0f;
}
canvas.rotate((float) (-Math.toDegrees(mOrientation[0]) + rotation ));
Any suggestions on how to tell which landscape mode the phone is in?