Android传感器编程入门(一)

 本讲内容:Android传感器编程入门,分别包括加速度传感器(accelerometer),陀螺仪(gyroscope),环境光照传感器(light),磁力传感器(magnetic field),方向传感器(orientation),压力传感器(pressure),距离传感器(proximity)和温度传感器(temperature)

本讲的学习方式还是在实战中学习,需要提醒的是模拟器中无法模拟传感器,因此你需要准备一款Android真机才能运行本讲的例子。

二、实例:手机传感器清单

我们还是先看程序后解释,

1、创建一个项目 Lesson37_HelloSensor , 主Activity名字叫 mainActivity.java

2、UI布局文件main.xml的内容如下:

  
  
  
  
  1. <?xml version="1.0" encoding="utf-8"?> 
  2. <linearlayout android:layout_height="fill_parent" android:layout_width="fill_parent" android:orientation="vertical" xmlns:android="http://schemas.android.com/apk/res/android"> 
  3. <textview android:layout_height="wrap_content" android:layout_width="fill_parent" android:text="" android:id="@+id/TextView01"> 
  4. </textview></linearlayout> 

3、mainActivity.java的内容如下:

 

   
   
   
   
  1. package basic.android.lesson37; 
  2.   
  3. import java.util.List; 
  4.   
  5. import android.app.Activity; 
  6. import android.content.Context; 
  7. import android.hardware.Sensor; 
  8. import android.hardware.SensorManager; 
  9. import android.os.Bundle; 
  10. import android.widget.TextView; 
  11. public class MainActivity extends Activity { 
  12.   
  13.     /** Called when the activity is first created. */ 
  14.     @Override 
  15.     public void onCreate(Bundle savedInstanceState) { 
  16.         super.onCreate(savedInstanceState); 
  17.         setContentView(R.layout.main); 
  18.   
  19.         //准备显示信息的UI组建 
  20.         final TextView tx1 = (TextView) findViewById(R.id.TextView01); 
  21.   
  22.         //从系统服务中获得传感器管理器 
  23.         SensorManager sm = (SensorManager) getSystemService(Context.SENSOR_SERVICE); 
  24.   
  25.         //从传感器管理器中获得全部的传感器列表 
  26.         List<sensor> allSensors = sm.getSensorList(Sensor.TYPE_ALL); 
  27.   
  28.         //显示有多少个传感器 
  29.         tx1.setText("经检测该手机有" + allSensors.size() + "个传感器,他们分别是:\n"); 
  30.   
  31.         //显示每个传感器的具体信息 
  32.         for (Sensor s : allSensors) { 
  33.   
  34.             String tempString = "\n" + "  设备名称:" + s.getName() + "\n" + "  设备版本:" + s.getVersion() + "\n" + "  供应商:" 
  35.                     + s.getVendor() + "\n"
  36.   
  37.             switch (s.getType()) { 
  38.            case Sensor.TYPE_ACCELEROMETER: 
  39.                 tx1.setText(tx1.getText().toString() + s.getType() + " 加速度传感器accelerometer" + tempString); 
  40.                 break
  41.             case Sensor.TYPE_GYROSCOPE: 
  42.                 tx1.setText(tx1.getText().toString() + s.getType() + " 陀螺仪传感器gyroscope" + tempString); 
  43.                 break
  44.             case Sensor.TYPE_LIGHT: 
  45.  
  46.                 tx1.setText(tx1.getText().toString() + s.getType() + " 环境光线传感器light" + tempString); 
  47.                 break
  48.             case Sensor.TYPE_MAGNETIC_FIELD: 
  49.                 tx1.setText(tx1.getText().toString() + s.getType() + " 电磁场传感器magnetic field" + tempString); 
  50.                 break
  51.             case Sensor.TYPE_ORIENTATION: 
  52.                 tx1.setText(tx1.getText().toString() + s.getType() + " 方向传感器orientation" + tempString); 
  53.                 break
  54.             case Sensor.TYPE_PRESSURE: 
  55.                 tx1.setText(tx1.getText().toString() + s.getType() + " 压力传感器pressure" + tempString); 
  56.                 break
  57.             case Sensor.TYPE_PROXIMITY: 
  58.                 tx1.setText(tx1.getText().toString() + s.getType() + " 距离传感器proximity" + tempString); 
  59.                 break
  60.             case Sensor.TYPE_TEMPERATURE: 
  61.                 tx1.setText(tx1.getText().toString() + s.getType() + " 温度传感器temperature" + tempString); 
  62.                 break
  63.             default
  64.                 tx1.setText(tx1.getText().toString() + s.getType() + " 未知传感器" + tempString); 
  65.                 break
  66.             } 
  67.           }
  68.   
  69.     } 

 

你可能感兴趣的:(android,移动开发,传感器,sensor,休闲)