明亮的用英语怎么说:Sensor传感器源码的阅读与应用开发简单实例

来源:百度文库 编辑:偶看新闻 时间:2024/07/04 21:53:32
Android系统支持多种传感器。应用到各个层次,有的传感器已经在Android的框架中使用,大多数传感器由应用程序中来使用。
一.Android中支持的传感器类型:

传感器


Java中的名称
本地接口名称
数值
   加速度

TYPE_ACCELEROMETER
SENSOR_TYPE_ACCELEROMETER
1
   磁场
TYPE_MAGNETIC_FIELD
SENSOR_TYPE_MAGNETIC_FIELD
2
   方向
TYPE_ORIENTATION
SENSOR_TYPE_ORIENTATION
3
陀螺仪
TYPE_GYROSCOPE
SENSOR_TYPE_GYROSCOPE
4
光线(亮度)
TYPE_LIGHT
SENSOR_TYPE_LIGHT
5
压力
TYPE_PRESSURE
SENSOR_TYPE_PRESSURE
6
温度
TYPE_TEMPERATURE
SENSOR_TYPE_TEMPERATURE
7
接近
TYPE_PROXIMITY
SENSOR_TYPE_PROXIMITY
8

二.Android 系统的代码分布情况:

1)传感器系统的java代码


代码路径:framework/base/core/java/android/hardware中
    目录中包含了Camera 和Sensor两部分,Sensor部分的内容为Sensor*.java 文件。

2)传感器系统的JNI部分


代码路径: framework/base/core/jni/android_hardware_SensorManager.cpp
   本部分提供了android.hardware.Sensor.Manager 类的本质支持。

3)传感器系统硬件层实现的接口


头文件路径:hardware/libhardware/include/hardware/sensors.h


传感器系统的硬件抽象层需要各个系统根据sensors.h中定义的接口去实现
Sensor部分的内容还包含了底层部分的驱动和硬件抽象层,以及上层对Sensor的调用部


三.Android的Sensor源码解析:
  Android中的Sensor的主要文件为:
    Sensor.java              单一传感器描述文件
    SensorEvent.java         传感器系统的时间类
    SensorEventListener.java  传感器监听事件(是一个接口)
    SensorListener.java       传感器监听(接口)
    SensorManager.java        传感器的核心管理类

  Sensor.java中定义的是传感器常量的一些类型,如public static final TYPE_MAGNETIC_FIELD=2;
            等,具体参数参照传感器类型(图一)
    SensorManager.java   
          public Sensor getDefaultSensor(int type){获得默认的传感器}
          public List getSensorList(int type) {获得传感器列表}
          public boolean registerListener(SensorListener listener, int sensors) {
        return registerListener(listener, sensors, SENSOR_DELAY_NORMAL);
    }             注册监听事件
          public void unregisterListener(SensorListener listener, int sensors) {注销监听事件}

   时间关系,源码不逐一说了,大家自己有下个源码看下,如果没有源码的,给我个邮箱我给大家发这部分代码,直接上个简单的DEMO供大家认识下,好像这块的代码,在IBM的一个网站上也能找到!
四。程序代码
1)SensorActivity.java代码
  1. package com.sensor;
  2. import android.app.Activity;
  3. import android.hardware.SensorEventListener;
  4. import android.hardware.SensorListener;
  5. import android.hardware.SensorManager;
  6. import android.os.Bundle;
  7. import android.util.Log;
  8. import android.widget.TextView;
  9. public class SensorActivity extends Activity implements SensorListener{

  10. final String tag = "SensorActivity";
  11.     SensorManager sm = null;
  12. TextView xViewA = null;
  13. TextView yViewA = null;
  14. TextView zViewA = null;
  15. TextView xViewO = null;
  16. TextView yViewO = null;
  17. TextView zViewO = null;



  18.     /** Called when the activity is first created. */
  19.     @Override
  20.     public void onCreate(Bundle savedInstanceState) {
  21.         super.onCreate(savedInstanceState);
  22.         setContentView(R.layout.main);
  23.         
  24.         sm=(SensorManager)getSystemService(SENSOR_SERVICE);
  25.         xViewA = (TextView) findViewById(R.id.xbox);
  26.         yViewA = (TextView) findViewById(R.id.ybox);
  27.         zViewA = (TextView) findViewById(R.id.zbox);
  28.         xViewO = (TextView) findViewById(R.id.xboxo);
  29.         yViewO = (TextView) findViewById(R.id.yboxo);
  30.         zViewO = (TextView) findViewById(R.id.zboxo);
  31.         
  32.         
  33.         
  34.         
  35.     }
  36. @Override
  37. public void onAccuracyChanged(int sensor, int accuracy) {
  38.   // TODO Auto-generated method stub
  39.   Log.d(tag,"onAccuracyChanged: " + sensor + ", accuracy: " + accuracy);
  40. }
  41. @Override
  42. public void onSensorChanged(int sensor, float[] values) {
  43.   // TODO Auto-generated method stub
  44.     synchronized (this) {
  45.              Log.d(tag, "onSensorChanged: " + sensor + ", x: " + values[0] + ", y: " + values[1] + ", z: " + values[2]);
  46.              if (sensor == SensorManager.SENSOR_ORIENTATION) {
  47.               xViewO.setText("Orientation X: " + values[0]);
  48.               yViewO.setText("Orientation Y: " + values[1]);
  49.               zViewO.setText("Orientation Z: " + values[2]);
  50.              }
  51.              if (sensor == SensorManager.SENSOR_ACCELEROMETER) {
  52.               xViewA.setText("Accel X: " + values[0]);
  53.               yViewA.setText("Accel Y: " + values[1]);
  54.               zViewA.setText("Accel Z: " + values[2]);
  55.              }            
  56.          }
  57.   
  58. }


  59.   @Override
  60.      protected void onResume() {
  61.          super.onResume();
  62.          sm.registerListener(this,
  63.                  SensorManager.SENSOR_ORIENTATION |
  64.            SensorManager.SENSOR_ACCELEROMETER,
  65.                  SensorManager.SENSOR_DELAY_NORMAL);
  66.      }
  67.      
  68.      @Override
  69.      protected void onStop() {
  70.          sm.unregisterListener(this);
  71.          super.onStop();
  72.      }   
  73.      
  74. }

复制代码2)main.xml  布局文件(简单的放些TextView)
  1.    
  2.     android:orientation="vertical"
  3.     android:layout_width="fill_parent"
  4.     android:layout_height="fill_parent"
  5.     >
  6.     android:layout_width="fill_parent"
  7.     android:layout_height="wrap_content"
  8.     android:text="@string/hello"
  9.     />
  10.     android:layout_width="fill_parent"
  11.     android:layout_height="wrap_content"
  12.     android:text="Accelerometer"
  13.     />
  14.     android:layout_width="fill_parent"
  15.     android:layout_height="wrap_content"
  16.     android:text="X Value"
  17.     android:id="@+id/xbox"
  18.     />
  19.     android:layout_width="fill_parent"
  20.     android:layout_height="wrap_content"
  21.     android:text="Y Value"
  22.     android:id="@+id/ybox"
  23.     />
  24.     android:layout_width="fill_parent"
  25.     android:layout_height="wrap_content"
  26.     android:text="Z Value"
  27.     android:id="@+id/zbox"
  28.     />   

  29.     android:layout_width="fill_parent"
  30.     android:layout_height="wrap_content"
  31.     android:text="Orientation"
  32.     />
  33.     android:layout_width="fill_parent"
  34.     android:layout_height="wrap_content"
  35.     android:text="X Value"
  36.     android:id="@+id/xboxo"
  37.     />
  38.     android:layout_width="fill_parent"
  39.     android:layout_height="wrap_content"
  40.     android:text="Y Value"
  41.     android:id="@+id/yboxo"
  42.     />
  43.     android:layout_width="fill_parent"
  44.     android:layout_height="wrap_content"
  45.     android:text="Z Value"
  46.     android:id="@+id/zboxo"
  47.     />   
复制代码五:在模拟器开发测试Sensor要注意,必须要装个传感器插件,才能看到效果,可能有部分手机硬件驱动是不支持Sensor的,不过市面上流行的品牌手机一般都支持!
        抽空首次整理做的教程,有不好的地方,不吝指正!