Android计步模块实例代码(类似微信运动)
最近在项目中研究计步模块,每天0点开始记录当天的步数,类似微信运动。碰到了不少坑今天有时间整理出来给大家看看。
做之前在google、baidu、github上搜了个遍没找到好的,大多数都是需要在后台存活,需要后台service。
对于现在的各大手机厂商为了提高电池的续航里程(省电),基本上alertmanager、
android.intent.action.boot_completed、后台service都是被干掉的。
后台保活策略service,基本上没什么用,被手机系统干掉只是时间问题,所以我认为最好也不要去做,就算后台存活了,用户看到这个app非常费电也会被删除的。
项目地址:https://github.com/jiahongfei/todaystepcounter
目前android计步有两种方式
系统计步芯片
在android4.4版本之后,部分机型实现了sensor.type_step_counter传感器,用于纪录用户行走的步数。从手机开机开始纪录,手机关机时重置为0。
这个记步芯片是系统级别的,相对之前老版本的传感器记步,性能有一些优化:
不会因为app单独用了记步的功能而额外耗电
系统芯片记步是持续的,能够优化部分机型后台不记步的问题。
加速度传感器计算方式
加速度传感器非常耗电,导致app的耗电量很高,影响用户体验。
需要后台实时运行才能实现记步的功能,如果app进程被系统或者安全软件杀死,导致记步功能没办法使用
项目地址:https://github.com/jiahongfei/todaystepcounter
根据以上两种方式实现计步,手机提供计步传感器就使用sensor.type_step_counter方式(app后台关闭也可以计步),如果不提供就使用sensormanager.sensor_delay_ui方式(app需要保持后台运行)。
项目结构:
计步service使用单独进程,所以使用到进程间通信aidl,todaystepcounterlib为库文件用于在单独进程中实现计步算法,app依赖todaystepcounterlib项目获取当前步数展示。
接入方式:
项目结构app中时如何使用计步模块的看如下代码
public class mainactivity extends appcompatactivity { private static string tag = "mainactivity"; private static final int refresh_step_what = 0; //循环取当前时刻的步数中间的间隔时间 private long time_interval_refresh = 500; private handler mdelayhandler = new handler(new todaystepcountercall()); private int mstepsum; private isportstepinterface isportstepinterface; @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); intent intent = new intent(this, vitalitystepservice.class); startservice(intent); bindservice(intent, new serviceconnection() { @override public void onserviceconnected(componentname name, ibinder service) { isportstepinterface = isportstepinterface.stub.asinterface(service); try { mstepsum = isportstepinterface.getcurrtimesportstep(); updatestepcount(); } catch (remoteexception e) { e.printstacktrace(); } mdelayhandler.sendemptymessagedelayed(refresh_step_what, time_interval_refresh); } @override public void onservicedisconnected(componentname name) { } }, context.bind_auto_create); } class todaystepcountercall implements handler.callback{ @override public boolean handlemessage(message msg) { switch (msg.what) { case refresh_step_what: { if (null != isportstepinterface) { int step = 0; try { step = isportstepinterface.getcurrtimesportstep(); } catch (remoteexception e) { e.printstacktrace(); } if (mstepsum != step) { mstepsum = step; updatestepcount(); } } mdelayhandler.sendemptymessagedelayed(refresh_step_what, time_interval_refresh); break; } } return false; } } private void updatestepcount() { log.e(tag,"updatestepcount : " + mstepsum); textview steptextview = (textview)findviewbyid(r.id.steptextview); steptextview.settext(mstepsum + "步"); } }
计步策略:
1.如果使用加速度传感器计步必须要app在后台存活才可以计步。‘
2.重头戏是使用计步传感器实现计步,app在后台关闭也可以计步。
如下是采用sensor.type_step_counter传感器实现计步策略:
1. 用户新安装app,从用户第一次打开app开始计步,当天不跨天
2. 用户一直打开app计步,且跨越0点没有关闭app
3.用户打开一次app后台关闭,跨越0点且0点分隔alertmanager不能自启动(目前多数手机都是不能启动的)
4.用户打开一次app后台关闭,跨越多个0点且alertmanager 0点分隔可以启动
5.用户开启一次app且在同一天进行重启手机(自启动不好用,很多手机不好用)
6.用户开启一次app,开关机跨0点(开机自启动不好用)
7.用户开启一次app,开关机跨0点(开机自启动可以)
缺陷
1.方案三 跨0点打开app步数算 前一天的,如果跨越多天会导致前一天步数非常大。
2.方案四 跨0点之前的步数会丢失(由于0点分隔alertmanager可以回调,所以可以处理0点之前的数据,以后版本在修复吧)
3.在计步器回调中频繁调用sharepreference费电
注意:
1.每天早上打开app可以提高几步精度,和微信步数几乎一致。
2.每次重启手机请打开app,会合并步数
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 百度快照被劫持 怎么修复与排查