Ejemplo n.º 1
0
 /**
  * Launch Ripple animation for the current view centered at x and y position
  *
  * @param x Horizontal position of the ripple center
  * @param y Vertical position of the ripple center
  */
 public void animateRipple(final float x, final float y) {
   createAnimation(x, y);
 }
Ejemplo n.º 2
0
 /**
  * Launch Ripple animation for the current view with a MotionEvent
  *
  * @param event MotionEvent registered by the Ripple gesture listener
  */
 public void animateRipple(MotionEvent event) {
   createAnimation(event.getX(), event.getY());
 }