簡體   English   中英

TYPE_ROTATION_VECTOR在某些設備上不起作用

[英]TYPE_ROTATION_VECTOR not working on certain devices

我已經制作了一個使用TYPE_ROTATION_VECTOR來獲取手機方向的程序。該程序在某些三星銀河手機上可以使用,但在索尼xperia neo v上卻無法使用。所有手機都使用api> = 9的android版本。問題 ?

package com.example.sensortest;

import android.annotation.TargetApi;
import android.app.Activity;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
import android.os.Build;
import android.os.Bundle;
import android.view.Menu;
import android.widget.TextView;

public class MainActivity extends Activity implements SensorEventListener{
TextView t1,t2,t3;
private SensorManager mSensorManager;
private Sensor mRotVectSensor;
private float[] orientationVals=new float[3];
private float[] mRotationMatrix=new float[16];
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    t1=(TextView)findViewById(R.id.TextView1);
    t2=(TextView)findViewById(R.id.TextView2);
    t3=(TextView)findViewById(R.id.TextView3);
    mSensorManager = (SensorManager) getSystemService(SENSOR_SERVICE);
    mRotVectSensor=mSensorManager.getDefaultSensor(Sensor.TYPE_ROTATION_VECTOR);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}
@TargetApi(Build.VERSION_CODES.GINGERBREAD)
@Override
public void onSensorChanged(SensorEvent event)
{
    if(event.sensor.getType()==Sensor.TYPE_ROTATION_VECTOR)
    {
        SensorManager.getRotationMatrixFromVector(mRotationMatrix,event.values);
        SensorManager.remapCoordinateSystem(mRotationMatrix,SensorManager.AXIS_X, SensorManager.AXIS_Z, mRotationMatrix);
        SensorManager.getOrientation(mRotationMatrix, orientationVals);
        orientationVals[0]=(float)Math.toDegrees(orientationVals[0]);
        orientationVals[1]=(float)Math.toDegrees(orientationVals[1]);
        orientationVals[2]=(float)Math.toDegrees(orientationVals[2]);
        t1.setText(String.valueOf(orientationVals[0]));
        t2.setText(String.valueOf(orientationVals[1]));
        t3.setText(String.valueOf(orientationVals[2]));
    }
}
@Override
  public void onAccuracyChanged(Sensor sensor, int accuracy) {

  }
@Override
  protected void onResume() {
    super.onResume();
    // register this class as a listener for the orientation and
    // accelerometer sensors
    mSensorManager.registerListener(this,
        mRotVectSensor,
        10000);
  }

  @Override
  protected void onPause() {
    // unregister listener
    super.onPause();
    mSensorManager.unregisterListener(this);
  }

}

您必須檢查mRotVectSensor是否為空值。 對於Sensor.TYPE_ROTATION_VECTOR該設備必須具有gyroscope

我可能無法解決您的問題,但是請確保您在SensorManager.remapCoordinateSystem中使用了不同的矩陣(請參閱文檔 )。 在那里說:( 參數)outR-轉換后的旋轉矩陣。 inR和outR不應為同一數組。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM