开发者

Determing up regardless of device orientation

开发者 https://www.devze.com 2023-02-27 02:50 出处:网络
I am developing an AR application on Android and would like to to, regardless of device roll orientation get horizontal and vertical values, much like a spirit level. An example would be a user holds

I am developing an AR application on Android and would like to to, regardless of device roll orientation get horizontal and vertical values, much like a spirit level. An example would be a user holds their device in portrait mode and spins their phone, I would like the horizon on the phone to match the natural horizon. I have played with the roll value returned from the sensor manager but it seems to take pitch into account (ie. the device is now in landscape mode, what should be pitch affects roll.)

Also, when reading pitch, I would like the hori开发者_JAVA技巧zon to move up and down, regardless of roll. At the moment, when the device has rolled to 90 degrees, any pitch changes move in the horizontal direction rather than the vertical direction.

Any pointers?

Thanks in advance.

Paul


Yeah, I think your best bet, which I understand has it's flaws is using the accelerometers to determine the direction of the ground.

Use something like this....

    mSensorManager = (SensorManager)getSystemService(SENSOR_SERVICE);
    accelerometer = mSensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER);

in your onCreate method, then put this

    mSensorManager.registerListener(this, accelerometer, SensorManager.SENSOR_DELAY_NORMAL);

in your onResume and this to handle the updates

public void onSensorChanged(SensorEvent event) {
    if (event.sensor.getType() == Sensor.TYPE_ACCELEROMETER) {
        float xAcceleration = event.values[0];
        float yAcceleration = event.values[1];
        float zAcceleration = event.values[2];

Then, just use those Acceleration values to determine the direction of the ground. :-) I find that way is a lot more fluid, I hope that helps. :-)

For more info, check out the following for more info: http://developer.android.com/reference/android/hardware/SensorEvent.html#values

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号