美文网首页
Android-传感器-方向

Android-传感器-方向

作者: lioilwin | 来源:发表于2017-08-27 15:46 被阅读58次

使用方向传感器,定位手机y轴方向(y轴与北方夹角0-360度)

y轴: 手机长边方向
x轴:手机短边方向
z轴:与手机平面垂直方向

本文源码:https://github.com/lioilwin/StepOrient

一.使用

public class MainActivity extends AppCompatActivity implements OrientSensor.OrientCallBack{
    .........
       @Override
    public void Orient(float orient) {
        // 方向回调,手机长边y轴与北方夹角0-360度
        orientText.setText("方向:" + (int) orient);
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);     
        setContentView(R.layout.activity_main);
        orientText = (TextView) findViewById(R.id.orient_text);
        
        // 开启方向监听
        orientSensor = new OrientSensor(this, this);
        if (!orientSensor.registerOrient()) {
            Toast.makeText(this, "方向传感器不可用!", Toast.LENGTH_SHORT).show();
        }
    }
    .......
 }
 

二.方向传感器类


/**
 * 方向传感器
 */

public class OrientSensor implements SensorEventListener {
    private static final String TAG = "OrientSensor";
    private SensorManager sensorManager;
    private OrientCallBack orientCallBack;
    private Context context;
    float[] accelerometerValues = new float[3];
    float[] magneticValues = new float[3];

    public OrientSensor(Context context, OrientCallBack orientCallBack) {
        this.context = context;
        this.orientCallBack = orientCallBack;
    }

    public interface OrientCallBack {
        /**
         * 方向回调
         */
        void Orient(int orient);
    }

    /**
     * 注册加速度传感器和地磁场传感器 
     * @return 是否支持方向功能
     */
    public Boolean registerOrient() {
        Boolean isAvailable = true;
        sensorManager = (SensorManager) context.getSystemService(Context.SENSOR_SERVICE);

        // 注册加速度传感器
        if (sensorManager.registerListener(this, sensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER),
                SensorManager.SENSOR_DELAY_GAME)) {
            Log.i(TAG, "加速度传感器可用!");
        } else {
            Log.i(TAG, "加速度传感器不可用!");
            isAvailable = false;
        }

        // 注册地磁场传感器
        if (sensorManager.registerListener(this, sensorManager.getDefaultSensor(Sensor.TYPE_MAGNETIC_FIELD),
                SensorManager.SENSOR_DELAY_GAME)) {
            Log.i(TAG, "地磁传感器可用!");
        } else {
            Log.i(TAG, "地磁传感器不可用!");
            isAvailable = false;
        }
        return isAvailable;
    }

    /**
     * 注销方向监听器
     */
    public void unregisterOrient() {
        sensorManager.unregisterListener(this);
    }



    @Override
    public void onSensorChanged(SensorEvent event) {
        if (event.sensor.getType() == Sensor.TYPE_ACCELEROMETER) {
            accelerometerValues = event.values.clone();
        } else if (event.sensor.getType() == Sensor.TYPE_MAGNETIC_FIELD) {
            magneticValues = event.values.clone();
        }

        float[] R = new float[9];
        float[] values = new float[3];
        SensorManager.getRotationMatrix(R, null, accelerometerValues, magneticValues);
        SensorManager.getOrientation(R, values);
        int degree = (int) Math.toDegrees(values[0]);//旋转角度
        if (degree < 0) {
            degree += 360;
        }
        orientCallBack.Orient(degree);
    }

    @Override
    public void onAccuracyChanged(Sensor sensor, int accuracy) {
    }
}

简书: http://www.jianshu.com/p/066f667c99c3
CSDN博客: http://blog.csdn.net/qq_32115439/article/details/61620059
GitHub博客:http://lioil.win/2017/03/13/Android-Orient.html
Coding博客:http://c.lioil.win/2017/03/13/Android-Orient.htmlv

相关文章

  • Android-传感器-方向

    使用方向传感器,定位手机y轴方向(y轴与北方夹角0-360度) y轴: 手机长边方向x轴:手机短边方向z轴:与手机...

  • Android-方向传感器(制作指南针)

    方向传感器(制作指南针) Android中的方向传感器可以准确的判断出手机在各个方向的旋转角度,利用这些角度就可以...

  • Android 传感器开发详解

    Android 传感器开发详解 传感器 传感器的分类 方向传感器 陀螺仪传感器 磁场传感器 重力传感器 线性加速度...

  • android高级进阶

    传感器的使用传感器在手机上应用很广泛,有方向传感器, 加速传感器,重力传感器, 光线传感器,陀螺仪传感器, 压力传...

  • Android手机传感器的简单介绍

    Android手机传感器的使用 1、传感器的分类 动作传感器:加速度传感器、重力传感器、陀螺仪等位置传感器:方向传...

  • 传感器实现仿微信摇一摇功能

    导语 如今Android手机中,硬件中内嵌了很多传感器(比如加速度传感器,重力传感器,陀螺仪传感器,方向传感器,压...

  • 传感器开发

    Android 传感器种类: 光照传感器 压力 加速度 == 重力传感器 方向 陀螺仪 磁极 温度 湿度 获取...

  • Android传感器

    一.Android的三大类传感器 Android传感器按大方向划分大致有这么三类传感器:动作(Motion)传感器...

  • 传感器

    一.Android的三大类传感器 Android传感器按大方向划分大致有三类传感器:动作(Motion)传感器、环...

  • 传感器

    1.传感器使用场景 Android传感器按大方向划分大致有这么三类传感器:动作(Motion)传感器、环境(Env...

网友评论

      本文标题:Android-传感器-方向

      本文链接:https://www.haomeiwen.com/subject/szabdxtx.html