Android笔记(十九)制作一个简易的指南针

一、获取方向的方法

Android 获取手机旋转的方向和角度是通过加速度传感器和地磁传感器共同计算得出的,这是 Android 目前推荐使用的方式。正常情况下,手机的头部如果是正北方向,那么它围绕Z轴的旋转方向数值会是0。我们就可以根据手机围绕Z轴的旋转方向的数值来计算方位。

  1. 通过SensorManager 的getRotationMatrix()方法中就可以得到一个包含旋转矩阵的 R 数组。第一个参数 R 是一个长度为 9 的 float 数组, getRotationMatrix()方法计算出的旋转数据就会赋值到这个数组当中。第二个参数是一个用于将地磁向量转换成重力坐标的旋转矩阵,通常指定为 null 即可。第三和第四个参数则分别就是加速度传感器和地磁传感器输出的values 值。
  2. 通过SensorManager.getOrientation()方法可以得到手机的旋转数据,第一个参数是R数组,第二个参数是旋转数据,values[0]记录着手机围绕着 Z 轴的旋转弧度, values[1]记录着手机围绕 X 轴的旋转弧度, values[2]记录着手机围绕 Y 轴的旋转弧度。
  3. RotateAnimation旋转动画效果

    RotateAnimation (float fromDegrees, float toDegrees, int pivotXType, float pivotXValue, int pivotYType, float pivotYValue)

    第一个参数:旋转的开始角度
    第二个参数:旋转的结束角度
    第三个参数:X轴的伸缩模式,可以取值为ABSOLUTE、RELATIVE_TO_SELF、RELATIVE_TO_PARENT。
    第四个参数:X坐标的伸缩值。
    第五个参数:Y轴的伸缩模式,可以取值为ABSOLUTE、RELATIVE_TO_SELF、RELATIVE_TO_PARENT。
    第六个参数:Y坐标的伸缩值。

二、1.建立布局

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" >

    <ImageView  android:id="@+id/circle" android:layout_width="250dp" android:layout_height="250dp" android:layout_centerInParent="true" android:src="@drawable/circle" />

    <ImageView  android:id="@+id/arrow" android:layout_width="60dp" android:layout_height="110dp" android:layout_centerInParent="true" android:src="@drawable/arrow" />

</RelativeLayout>

2.MainActivity

public class MainActivity extends ActionBarActivity {
    private SensorManager sensorManager;
    private ImageView circle;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        circle = (ImageView) findViewById(R.id.circle);
        sensorManager = (SensorManager) getSystemService(Context.SENSOR_SERVICE);
        Sensor magnetic = sensorManager
                .getDefaultSensor(Sensor.TYPE_MAGNETIC_FIELD);
        Sensor accelerometer = sensorManager
                .getDefaultSensor(Sensor.TYPE_ACCELEROMETER);
        sensorManager.registerListener(listener, magnetic,
                SensorManager.SENSOR_DELAY_GAME);
        sensorManager.registerListener(listener, accelerometer,
                SensorManager.SENSOR_DELAY_GAME);
    }

    @Override
    protected void onDestroy() {
        // TODO Auto-generated method stub
        super.onDestroy();
        if (sensorManager != null) {
            sensorManager.unregisterListener(listener);
        }
    }

    private SensorEventListener listener = new SensorEventListener() {
        float[] accelerometerValues = new float[3];
        float[] magneticValues = new float[3];
        private float lastDegree;

        @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);
            // 将计算出的旋转角度取反,用于旋转指南针背景图
            float rotateDegree = -(float) Math.toDegrees(values[0]);
            if (Math.abs(rotateDegree - lastDegree) > 1) {
                RotateAnimation animation = new RotateAnimation(lastDegree,
                        rotateDegree, Animation.RELATIVE_TO_SELF, 0.5f,
                        Animation.RELATIVE_TO_SELF, 0.5f);
                animation.setFillAfter(true);// 动画执行完后是否停留在执行完的状态
                circle.startAnimation(animation);
                lastDegree = rotateDegree;
            }
        }

        @Override
        public void onAccuracyChanged(Sensor sensor, int accuracy) {
            // TODO Auto-generated method stub

        }
    };

三、效果如图

完整项目代码和apk安装文件参考如下:
http://download.csdn.net/detail/tomi_en/9082505

你可能感兴趣的:(android,传感器,指南针)