Flutter教程

Stepcounter

Contents

Cordova plugin for using device's stepcounter on Android (API > 19)

Use to

  • start and stop stepcounter service
  • read device's stepcounter data
https://github.com/ihadeed/cordova-plugin-stepcounter

联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.

Contact Us Today!

Ionic Stepcounter插件的安装(Installation)

ionic cordova plugin add cordova-plugin-stepcounter npm install @ionic-native/stepcounter
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
ionic enterprise register --key=YOURPRODUCTKEY npm install @ionic-enterprise/stepcounter

Ionic Stepcounter插件支持的平台(Supported Platforms)

  • Android

Ionic Stepcounter插件的用法(Usage)

import { Stepcounter } from '@ionic-native/stepcounter/ngx';

constructor(private stepcounter: Stepcounter) { }

...

let startingOffset = 0;
this.stepcounter.start(startingOffset).then(onSuccess => console.log('stepcounter-start success', onSuccess), onFailure => console.log('stepcounter-start error', onFailure));

this.stepcounter.getHistory().then(historyObj => console.log('stepcounter-history success', historyObj), onFailure => console.log('stepcounter-history error', onFailure));