开发学院手机开发Android 开发 Android 加速度传感器 (G-Sensor) 阅读

Android 加速度传感器 (G-Sensor)

 2010-08-11 11:44:00 来源:WEB开发网   
核心提示:传感器示例样例应用程序仅监控对方向和加速表传感器的更改(源代码见 下载),当收到更改时,Android 加速度传感器 (G-Sensor)(4),传感器值在 TextView 小部件的屏幕上显示,图 1 展示了该应用程序的运行情况,图 1. 监视加速和方向使用 Eclipse 环境和 Android Developer

传感器示例

样例应用程序仅监控对方向和加速表传感器的更改(源代码见 下载)。当收到更改时,传感器值在 TextView 小部件的屏幕上显示。图 1 展示了该应用程序的运行情况。

图 1. 监视加速和方向

使用 Eclipse 环境和 Android Developer Tools 插件创建的应用程序。(关于使用 Eclipse 开发 Android 应用程序的信息,请参见 参考资料。)清单 1 展示了该应用程序的代码。

清单 1. IBMEyes.java

package com.msi.ibm.eyes;

import android.app.Activity;

import android.os.Bundle;

import android.util.Log;

import android.widget.TextView;

import android.hardware.SensorManager;

import android.hardware.SensorListener;

public class IBMEyes extends Activity implements SensorListener {

final String tag = "IBMEyes";

SensorManager sm = null;

TextView xViewA = null;

TextView yViewA = null;

TextView zViewA = null;

TextView xViewO = null;

TextView yViewO = null;

TextView zViewO = null;

/** Called when the activity is first created. */

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

// get reference to SensorManager

sm = (SensorManager) getSystemService(SENSOR_SERVICE);

setContentView(R.layout.main);

xViewA = (TextView) findViewById(R.id.xbox);

yViewA = (TextView) findViewById(R.id.ybox);

zViewA = (TextView) findViewById(R.id.zbox);

xViewO = (TextView) findViewById(R.id.xboxo);

yViewO = (TextView) findViewById(R.id.yboxo);

zViewO = (TextView) findViewById(R.id.zboxo);

}

public void onSensorChanged(int sensor, float[] values) {

synchronized (this) {

Log.d(tag, "onSensorChanged: " + sensor + ", x: " +

values[0] + ", y: " + values[1] + ", z: " + values[2]);

上一页  1 2 3 4 5 6 7 8 9  下一页

Tags:Android 加速度 传感器

编辑录入:coldstar [复制链接] [打 印]
[]
  • 好
  • 好的评价 如果觉得好,就请您
      0%(0)
  • 差
  • 差的评价 如果觉得差,就请您
      0%(0)
赞助商链接