Android利用Sensor實現傳感器功能
本文實例為大傢分享瞭Android利用Sensor實現傳感器的具體代碼,供大傢參考,具體內容如下
一、傳感器的使用
1、傳感器的類型:
方向傳感器::Sensor.TYPE_ORIENTATION
加速度(重力)傳感器:sensor.TYPE_ACCELEFOMETER
光線傳感器:sensor.TYPT_LIGHT
磁場傳感器:sensor.TYPE_MANGNETIC_FIELD
距離(臨近性)傳感器:Sensor.TYPE_FROXIMITY
溫度傳感器:Sensor.TYPE_TEMPERATURE
常用的API:
<1>得到傳感器的服務(得到傳感器的管理者)
SensorManager sm=(SensorManager)getSystemService(SENSOR_SERVICE);
<2>得到手機所支持的所有的傳感器的類型:
List list=sm.getSensorList(SensorManager.TYPE_ALL);
<3>傳感器的類型:
Sensor.getType();
<4>傳感器的名字;
Sensor.getName();
<5>傳感器的監聽:SensorEventListener()
sm.registerListener(監聽,傳感器對象,rate);
重點:
<1>光線傳感器:sensor.TYPT_LIGHT
得到光線值:float f=event.values[0];
WindowManager.LayoutParams params = activity.getWindow().getAttributes();
params.screenBrightness = value / 255f;
activity.getWindow().setAttributes(params);
<2>加速度傳感器:sensor.TYPE_ACCELEFOMETER
加速度有三個值:這三個值是手機在三個方向受到的加速度
float x=event.values[0];–>在手機頂部從左邊沿往有邊沿是手機的X軸的正方向
float y=event.values[1];–>從手機頂部沿手機左邊沿手機底部是Y軸的正方向
float z=event.values[2];–>垂直手機屏幕朝外的是正方向
<3>方向傳感器:Sensor.TYPE_ORIENTATION
方向傳感器三個值:
方向角:指手機平躺時,手機頭部繞Z軸旋轉,與地球正北極的夾角
0代表北(North)
90代表東East
180代表南(South)
270代表西(West)
俯視角:手機繞X軸旋轉與水平線的夾角
滾轉角:手機繞Y軸旋轉與水平線的夾角
利用方向傳感器實現 指南針應用
運行後效果圖如下:
佈局文件(activity_main.xml)
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/activity_main" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context="com.example.g150825_android29.MainActivity"> <ImageView android:layout_width="match_parent" android:layout_height="match_parent" android:src="@drawable/znz" android:id="@+id/iv_image" />I <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="30sp" android:id="@+id/tv_main_result" /> </RelativeLayout>
Java代碼(MainActivity )
package com.example.g150825_android29; import android.content.Context; import android.hardware.Sensor; import android.hardware.SensorEvent; import android.hardware.SensorEventListener; import android.hardware.SensorManager; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; import android.view.View; import android.view.WindowManager; import android.view.animation.Animation; import android.view.animation.RotateAnimation; import android.widget.ImageView; import android.widget.TextView; import java.util.List; public class MainActivity extends AppCompatActivity { private SensorManager sensorManager; private Sensor sensorOri; private TextView tv_main_result; private MyListener myListener; private ImageView iv_image; private float current=0; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); tv_main_result = (TextView) findViewById(R.id.tv_main_result); iv_image = (ImageView) findViewById(R.id.iv_image); //得到傳感器管理者 sensorManager = (SensorManager) getSystemService(Context.SENSOR_SERVICE); //得到光線傳感器 // sensorLight = sensorManager.getDefaultSensor(Sensor.TYPE_LIGHT); //獲取加速度傳感器 // sensorACC = sensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER); //獲取方向傳感器 sensorOri=sensorManager.getDefaultSensor(Sensor.TYPE_ORIENTATION); //獲取光線傳感器的值(光線值) myListener = new MyListener(); } //註冊監聽(監聽某一個傳感器的值) @Override protected void onResume() { super.onResume(); sensorManager.registerListener(myListener,sensorOri,SensorManager.SENSOR_DELAY_UI); } class MyListener implements SensorEventListener{ //當值發生改變 @Override public void onSensorChanged(SensorEvent sensorEvent) { float[] f=sensorEvent.values; float x=f[0]; float y=f[1]; float z=f[2]; tv_main_result.setText("x="+x+"\ny="+y+"\nz="+z); //實例化旋轉動畫 RotateAnimation rotateAnimation=new RotateAnimation(current,-x, Animation.RELATIVE_TO_SELF,0.5f, Animation.RELATIVE_TO_SELF,0.5f); rotateAnimation.setDuration(200); current=-x; iv_image.startAnimation(rotateAnimation); //改變屏幕的亮度 // WindowManager.LayoutParams layoutParams=getWindow().getAttributes(); // layoutParams.screenBrightness=light/255f; // getWindow().setAttributes(layoutParams); } //當值的精度發生改變 @Override public void onAccuracyChanged(Sensor sensor, int i) { } } //取消註冊監聽 @Override protected void onDestroy() { super.onDestroy(); sensorManager.unregisterListener(myListener); } // public void getAllSensors(View view){ // List<Sensor> sensors=sensorManager.getSensorList(Sensor.TYPE_ALL); // for(Sensor s:sensors){ // Log.i("test", s.getName()); // } // // } }
以上就是本文的全部內容,希望對大傢的學習有所幫助,也希望大傢多多支持WalkonNet。