Android Open Source - steppy Steppy Interactor






From Project

Back to project page steppy.

License

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.

Java Source Code

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();
}




Java Source Code List

net.daverix.steppy.MainActivity.java
net.daverix.steppy.OnStepsCountedListener.java
net.daverix.steppy.SteppyInteractor.java
net.daverix.steppy.SteppyService.java