我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Android传感器的简单使用方法

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Android传感器的简单使用方法

本文实例为大家分享了Android传感器简单使用的具体代码,供大家参考,具体内容如下

1. SensorManager类

SensorManager类用来管理各个传感器:通过SensorManager创建实例,并用getSystemService(SENSOR_SERVICE)获取传感器服务。
使用其getSensorList()方法,可以获取所有可用的传感器该方法返回一个List<Sensor>,即Sensor对象的列表。
注意:当不使用或Activity暂停的时候,要关闭感应器:屏幕关闭时,系统不会自动关闭感应器,这会导致耗电增加,关闭的方法,就是解除对传感器的监听。

2. Sensor类

Sensor实例对应一个具体的传感器,通过判断Sensor的类型,来处理器传感器信息,类型如下:
方向传感器(Orientation sensor):SENSOR_TYPE_ORIENTATION
加速感应器(Accelerometer sensor):SENSOR_TYPE_ACCELEROMETER
陀螺仪传感器(Gyroscope sensor):SENSOR_TYPE_GYROSCOPE
磁场传感器(Magnetic field sensor):SENSOR_TYPE_MAGNETIC_FIELD
接近(距离)感应器(Proximity sensor):SENSOR_TYPE_PROXIMITY
光线传感器(Light sensor):SENSOR_TYPE_LIGHT
气压传感器(Pressure sensor):SENSOR_TYPE_PRESSURE
温度传感器(Temperature sensor): SENSOR_TYPE_TEMPERATURE
重力感应器(Gravity sensor,Android 2.3引入):SENSOR_TYPE_GRAVITY
线性加速感应器(Linear acceleration sensor ,Android 2.3引入):SENSOR_TYPE_LINEAR_ACCELERATION
旋转矢量传感器(Rotation vector sensor,Android 2.3引入): SENSOR_TYPE_ROTATION_VECTOR
相对湿度传感器(Relative humidity sensor,Android 4.0引入)
近场通信(NFC)传感器(Android 2.3引入),NFC和其他不一样,具有读写功能。

3. SensorEventListener 监听器

使用SensorEventListener可以监听传感器的各种事件,主要使用onSensorChanged()事件来获取传感器的信息。
onSensorChanged()事件的参数为SensorEvent对象,SensorEvent包含以下信息:
· 传感器类型: Sensor sensor
· 传感器数值精度:int accuracy
· 传感器具体值:float[ ] values
通过访问SensorEvent中的信息来获取具体数值。

4. 使用传感器的步骤

· 1. 定义SensorManager,并获取SensorManager实例;
· 2. 定义Sensor,并指定传感器;
· 3. 为定义的传感器注册事件监听事件:sensorManager.registerListener(三个参数),三个参数分别为:SensorEventListener、Sensor、更新速率;
· 4. 创建SensorEventListener监听器,获取传感器的值;
· 5. 退出应用时,应注销传感器事件的监听:sensorManager.unregisterListener(Sensor sensor)。

☆☆☆Android Studio实现在加速度传感器的使用

1.打开Android Studio,新建工程后,在activity_main.xml中界添加一个按钮和三个TextView。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="lession.example.com.androidlession616.MainActivity">
    
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        
        <Button
            android:text="使用三轴加速度感应器(重力)"
            android:layout_width="356dp"
            android:layout_height="wrap_content"
            android:id="@+id/button"
            android:textColor="@android:color/holo_red_dark"
            android:textSize="20sp" />
            
        <TextView
            android:text="TextView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@+id/button"
            android:id="@+id/textView"
            android:textColor="@android:color/holo_green_dark"
            android:textSize="20sp" />
            
        <TextView
            android:text="TextView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/textView2"
            android:textColor="@android:color/holo_green_dark"
            android:textSize="20sp" />
            
        <TextView
            android:text="TextView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/textView3"
            android:textColor="@android:color/holo_green_dark"
            android:textSize="20sp" />
            
    </LinearLayout>
    
</RelativeLayout>

2.在MainActivity中,编写代码。

package lession.example.com.androidlession616;

import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity {
    private TextView tv1,tv2,tv3;
    private float x, y, z;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Button bt = (Button) findViewById(R.id.button);
        tv1 = (TextView) findViewById(R.id.textView);
        tv2 = (TextView) findViewById(R.id.textView2);
        tv3 = (TextView) findViewById(R.id.textView3);
        bt.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                //通过服务得到传感器管理对象
                SensorManager sensorMgr = (SensorManager)
                        getSystemService(SENSOR_SERVICE);
                //得到重力传感器实例
                //TYPE_ACCELEROMETER 加速度传感器(重力传感器)类型。
                //TYPE_ALL 描述所有类型的传感器。
                //TYPE_GYROSCOPE 陀螺仪传感器类型
                //TYPE_LIGHT 光传感器类型
                //TYPE_MAGNETIC_FIELD 恒定磁场传感器类型。
                //TYPE_ORIENTATION 方向传感器类型。
                //TYPE_PRESSURE 描述一个恒定的压力传感器类型
                //TYPE_PROXIMITY 常量描述型接近传感器
                //TYPE_TEMPERATURE 温度传感器类型描述
                final Sensor sensor = sensorMgr.getDefaultSensor(Sensor.TYPE_ACCELEROMETER);
                SensorEventListener lsn = new SensorEventListener() {
                    @SuppressWarnings("deprecation")//表示不检测过期的方法
                    //传感器获取值改变时响应此函数
                    public void onSensorChanged(SensorEvent e) {
                        x = e.values[0];
                        y = e.values[1];
                        z = e.values[2];
//                        x = e.values[SensorManager.DATA_X];
//                        y = e.values[SensorManager.DATA_Y];
//                        z = e.values[SensorManager.DATA_Z];
                        tv1.setText("x=" + x );//手机水平放置,左右x值
                        tv2.setText("y=" + y );//手机水平放置,前后y值
                        tv3.setText("z=" + z );//手机竖直放置,上下z值
                    }
                    public void onAccuracyChanged(Sensor s, int accuracy) {
                    }
                };
                //注册listener,第三个参数是检测的精确度
                sensorMgr.registerListener(lsn, sensor, SensorManager.SENSOR_DELAY_GAME);
            }
        });
    }
}

运行结果:

☆☆☆Android Studio实现在光线传感器的使用

1.打开Android Studio,新建工程后,在activity_main.xml中界添加一个按钮和一个TextView。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="lession.example.com.androidlession616_2.MainActivity">
    
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        
        <Button
            android:text="光照强度"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/button"
            android:textColor="@android:color/holo_red_dark"
            android:textSize="20sp" />
            
        <TextView
            android:text="TextView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/textView"
            android:textColor="@android:color/holo_green_dark"
            android:textSize="20sp" />
            
    </LinearLayout>
    
</RelativeLayout>

2.在MainActivity中,编写代码。

package lession.example.com.androidlession616_2;

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

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        final TextView tv = (TextView) findViewById(R.id.textView);
        Button bt = (Button) findViewById(R.id.button);
        bt.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                SensorManager mSManager = (SensorManager)
                        getSystemService(Context.SENSOR_SERVICE);
                Sensor mSen = mSManager.getDefaultSensor(Sensor.TYPE_LIGHT);
                SensorEventListener mSEListener = new SensorEventListener() {
                    @Override
                    public void onSensorChanged(SensorEvent event) {
                        tv.setText("光照强度为:\n"+event.values[0]+"勒克斯");
                    }
                    @Override
                    public void onAccuracyChanged(Sensor sensor, int accuracy) {
                    }
                };
                mSManager.registerListener(mSEListener,mSen,SensorManager.SENSOR_DELAY_NORMAL);
            }
        });
    }
}

运行结果:

这就是传感器的简单使用。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程网。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Android传感器的简单使用方法

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Android 传感器--光照传感器详解及使用

Android 设备中有许多传感器,其中有一个传感器控制着你屏幕亮度的变化。当你在很暗的地方使用手机,你设备的屏幕会自动调暗,从而保护你眼睛。 起着这样作用,Android是通过一款光照传感器来获取你周围环境亮度的变化。光照传感器一般在手机
2022-06-06

android传感器怎么使用

要使用Android传感器,首先需要在AndroidManifest.xml文件中声明所需的传感器权限。例如,要使用加速度传感器,可以添加以下权限声明:```xml```接下来,在你的Activity或Fragment中,可以通过以下步骤来
2023-08-18

怎么在Android中使用方向传感器

怎么在Android中使用方向传感器?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。具体如下:public class SensorHandActivity extends Gr
2023-05-30

简单学习Android Socket的使用方法

这方面的知识不是孤立的,其中有关于,Socket编程,多线程的操作,以及I/O流的操作。当然,实现方法不止一种,这只是其中一种,给同是新手一点点思路。如果有什么推荐的话,欢迎指点! 先给大家看一下应用程序的界面,基本就能知道大致的功能了。
2022-06-06

Android 获取传感器列表整理及简单实例

Android 获取传感器列表整理及简单实例Android 4.4 (API等级19)支持以下传感器: TYPE_ACCELEROMETER 加速度传感器,单位是m/s2,测量应用于设备X、Y、Z轴上的加速度 传感器类型值(
2023-05-31

Android popupwindow简单使用方法介绍

先看下效果 1.首页package com.yskj.jh.demopopupwindow; import android.content.Context; import android.graphics.drawable.BitmapDr
2022-06-06

Android AnalogClock简单使用方法实例

本文实例讲述了Android AnalogClock简单使用方法。分享给大家供大家参考,具体如下: AnalogClock组件的使用很简单,先来看看效果图:AnalogClock组件的使用只需要在布局中指定的显示位置写入此组件即可使用,不需
2022-06-06

android 传感器(OnSensorChanged)使用介绍

下面是API中定义的几个代表sensor的常量。IntTYPE_ACCELEROMETERA constant describing an accelerometer sensor type. 加速度传感器intTYPE_ALLA cons
2022-06-06

Android小米推送简单使用方法

公司项目需要做推送,我们选择用小米推送,经过一段时间的摸索,终于可以简单的使用小米推送了。 1.创建账号登入后 登入后选择消息推送:2.进入后创建项目,按照步骤创建完后如下3.后台配置完了,我们再配置代码,第一次使用小米推送 我下了个Dem
2022-06-06

Android传感器使用实例介绍

这篇文章主要为大家详细介绍了Android传感器的简单使用方法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
2022-12-16

Android Popupwindow弹出窗口的简单使用方法

本文实例为大家分享了Android Popupwindow弹出窗口的具体代码,供大家参考,具体内容如下代码很简单,没有和别的控件连用。布局自己随意定义,我的这个是最基础的,就直接上代码啦! 在MainActivity里import andr
2023-05-30

Android使用vcard文件的方法简单实例

本文实例讲述了Android使用vcard文件的方法。分享给大家供大家参考,具体如下:FileOutputStream os = null; try {os = VCardTest.this.openFileOutput("Android.
2022-06-06

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录