Back to project page activity-tracker.
The source code is released under:
MIT License
If you think the Android project activity-tracker 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 org.hopto.mjancola.model; //from ww w .ja v a 2 s. c o m import android.os.IBinder; /** * Interface for binder returned from location listener */ public interface MyMovement extends IBinder { public String getMovement(); // force the service to stop - save battery public void forceStop(); }