本文主要是介绍android 获取加速度传感器值,Andoid Studio-android开发05-获取加速度传感器数据并存储到文件中...,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
本篇介绍如何获取加速度数据并存储到csv文件中
一、想要达到的效果
功能:
1、点击开始按钮时,启动加速度传感器,读取数据,显示到屏幕上,且存入到List中;
2、点击停止按钮,停止加速度传感器,并将List中数据存入csv文件。
知识点:
1、一个activity怎样实现两个接口
2、怎样获得传感器服务,注册服务,注销服务
3、怎样获得button、textview句柄,以便操作
4、怎样关联button的click事件
二、activity文件
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
android:id="@+id/tvx"
android:layout_width="214dp"
android:layout_height="69dp"
android:text="TextView"
tools:layout_editor_absoluteX="117dp"
tools:layout_editor_absoluteY="100dp" />
android:id="@+id/tvy"
android:layout_width="214dp"
android:layout_height="53dp"
android:te
这篇关于android 获取加速度传感器值,Andoid Studio-android开发05-获取加速度传感器数据并存储到文件中...的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!