android传感器使用的demo,包括光线传感器,加速度传感器,距离传感器和方向传感器。
demo:下载地址
源码:
package com.bobo.study.study_5_1;
import android.app.Activity;
import android.content.Context;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.Sensor
1