我是靠谱客的博主 丰富鸡,最近开发中收集的这篇文章主要介绍android 传感器使用 Compass指南针的实现功能,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

以下是指南针通过方向传感器而旋转实现。

CompassDemo.java:

package com.example.activity;

import android.app.Activity;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
import android.os.Bundle;
import android.view.animation.Animation;
import android.view.animation.RotateAnimation;
import android.widget.ImageView;

public class CompassDemo extends Activity implements SensorEventListener {
private ImageView imageView;
SensorManager mSensorManager;
private float currentDegree=0f;
	@Override
protected void onCreate(Bundle savedInstanceState) {
	super.onCreate(savedInstanceState);
	setContentView(R.layout.compass);
	imageView=(ImageView)findViewById(R.id.znzImage);
	mSensorManager=(SensorManager)getSystemService(SENSOR_SERVICE);
}

	
	@Override
	protected void onResume() {
		mSensorManager.registerListener(this,mSensorManager.getDefaultSensor(Sensor.TYPE_ORIENTATION), SensorManager.SENSOR_DELAY_GAME);
		super.onResume();
	}
	
	
	@Override
	protected void onPause() {
		mSensorManager.unregisterListener(this);
		super.onPause();
	}

	

	@Override
	protected void onStop() {
		mSensorManager.unregisterListener(this);
		super.onStop();
	}


	@Override
	public void onAccuracyChanged(Sensor arg0, int arg1) {
		

	}

	@Override
	public void onSensorChanged(SensorEvent event) {
	int sensortype=event.sensor.getType();
	switch(sensortype){
	case Sensor.TYPE_ORIENTATION:
		float degree=event.values[0];
		RotateAnimation ra=new RotateAnimation(currentDegree,-degree,Animation.RELATIVE_TO_SELF,0.5f,Animation.RELATIVE_TO_SELF,0.5f);
		ra.setDuration(200);
		imageView.startAnimation(ra);
		currentDegree=-degree;
		break;
	}

	}

}


compass.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:orientation="vertical"
	android:layout_width="fill_parent"
	android:layout_height="fill_parent"
	android:background="#fff"
	>
<ImageView
	android:id="@+id/znzImage"
	android:layout_width="fill_parent"
	android:layout_height="fill_parent"
	android:scaleType="fitCenter"
	android:src="@drawable/znz" />
</LinearLayout>

在这里给大家分享一下指南针图片znz:



最后

以上就是丰富鸡为你收集整理的android 传感器使用 Compass指南针的实现功能的全部内容,希望文章能够帮你解决android 传感器使用 Compass指南针的实现功能所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(57)

评论列表共有 0 条评论

立即
投稿
返回
顶部