1. 程式人生 > 程式設計 >Android實現接近感測器

Android實現接近感測器

本文例項為大家分享了Android實現接近感測器的具體程式碼,供大家參考,具體內容如下

1.接近感測器檢測物體與聽筒(手機)的距離,單位是釐米。

一些接近感測器只能返回遠和近兩個狀態,如我的手機魅族E2只能識別到兩個距離:0CM(近距離)和5CM(遠距離)
因此,接近感測器將最大距離返回遠狀態,小於最大距離返回近狀態。
接近感測器可用於接聽電話時自動關閉LCD螢幕以節省電量。

一些晶片集成了接近感測器和光線感測器兩者功能(魅族E2)。

2.程式碼如下:

MainActivity.class

package com.example.sz.proximitytest;

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.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity {
 private static final String TAG = "MainActivity";
 private SensorManager mSensorManager=null;
 private Sensor mSensor=null;
 private TextView textView1=null;
 private TextView textView2=null;
 private TextView textView3=null;
 private Button button1=null;
 private Button button2=null;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 textView1 = (TextView) findViewById(R.id.textView1);
 textView2 = (TextView) findViewById(R.id.textView2);
 textView3 = (TextView) findViewById(R.id.textView3);
 /*獲取系統服務(SENSOR_SERVICE)返回一個SensorManager物件*/
 mSensorManager = (SensorManager) getSystemService(SENSOR_SERVICE);
 /*通過SensorManager獲取相應的(接近感測器)Sensor型別物件*/
 mSensor = mSensorManager.getDefaultSensor(Sensor.TYPE_PROXIMITY);
 /*註冊相應的SensorService*/
 button1 = (Button) findViewById(R.id.button1);
 button1.setOnClickListener(new Button.OnClickListener() {

  @Override
  public void onClick(View arg0) {
  mSensorManager.registerListener(mSensorEventListener,mSensor,SensorManager.SENSOR_DELAY_NORMAL);
  }
 });
 /* 銷燬相應的SensorService
  * 很關鍵的部分,注意,說明文件中提到,即使Activity不可見的時候,感應器依然會繼續工作
  * 所以一定要關閉觸發器,否則將消耗使用者大量電量*/
 button2 = (Button) findViewById(R.id.button2);
 button2.setOnClickListener(new Button.OnClickListener() {

  @Override
  public void onClick(View v) {
  mSensorManager.unregisterListener(mSensorEventListener,mSensor);
  }
 });
 }

 /*宣告一個SensorEventListener物件用於偵聽Sensor事件,並重載onSensorChanged方法*/
 private final SensorEventListener mSensorEventListener = new SensorEventListener() {

 @Override
 public void onSensorChanged(SensorEvent event) {
  Log.e(TAG,"onSensorChanged: -----0------"+event.values[0]);
  Log.e(TAG,"onSensorChanged: ------1-----"+event.values[1]);
  Log.e(TAG,"onSensorChanged: --------2---"+event.values[2]);




  if (event.sensor.getType() == Sensor.TYPE_PROXIMITY) {
  /*接近感測器檢測物體與聽筒的距離,單位是釐米。*/
  //這裡要注意,正常都是取第一位的值,但我碰到一個取第二位的
  float distance1 = event.values[0];
  float distance2 = event.values[1];
  float distance3 = event.values[2];
  textView1.setText("[0]距離:"+String.valueOf(distance1) + "cm");
  textView2.setText("[1]距離:"+String.valueOf(distance2) + "cm");
  textView3.setText("[2]距離:"+String.valueOf(distance3) + "cm");
  }
 }

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

 }
 };


}

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:app="http://schemas.android.com/apk/res-auto"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:gravity="center"
 android:orientation="vertical"
 tools:context=".MainActivity">

 <TextView
 android:id="@+id/textView1"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:text="Hello World!" />

 <Button
 android:id="@+id/button1"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_marginTop="20dp"
 android:text="開啟" />

 <Button
 android:id="@+id/button2"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_marginTop="20dp"
 android:text="關閉" />
</LinearLayout>

原始碼下載:Android接近感測器

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。