Android Open Source - gym-app-android Accelerometer Listener






From Project

Back to project page gym-app-android.

License

The source code is released under:

GNU General Public License

If you think the Android project gym-app-android 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 com.tabi.motiontest;

public interface AccelerometerListener {
    
    public void onAccelerationChanged(float x, float y, float z);
  
    public void onShake(float force);
  
}




Java Source Code List

com.tabi.motiontest.AccelerometerListener.java
com.tabi.motiontest.AccelerometerManager.java
com.tabi.motiontest.MainActivity.java