Back to project page steppy.
The source code is released under:
GNU General Public License
If you think the Android project steppy listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.daverix.steppy; /*from w w w . java 2 s . co m*/ public interface SteppyInteractor { void startListening(); void stopListener(); void registerOnStepsCountedListener(OnStepsCountedListener listener); void unregisterOnStepsCountedListener(OnStepsCountedListener listener); long getCountedSteps(); boolean isListening(); }