Android Open Source - DoubleDraggedLayout Dragged Listener






From Project

Back to project page DoubleDraggedLayout.

License

The source code is released under:

MIT License

If you think the Android project DoubleDraggedLayout 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 tm.soft.view;

interface DraggedListener {

  void startDragged();

  void dragged(float delta);

  void stopDragged();
}




Java Source Code List

tm.soft.activity.MainActivity.java
tm.soft.view.DoubleDraggedLayout.java
tm.soft.view.DraggedListener.java
tm.soft.view.DraggedView.java