HomeSort by relevance Sort by last modified time
    Searched full:propagationspeed (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/android/transition/
CircularPropagation.java 39 * Transition. A <code>propagationSpeed</code> of 1 means that a View centered farthest from
45 * @param propagationSpeed The speed at which propagation occurs, relative to the duration
49 public void setPropagationSpeed(float propagationSpeed) {
50 if (propagationSpeed == 0) {
51 throw new IllegalArgumentException("propagationSpeed may not be 0");
53 mPropagationSpeed = propagationSpeed;
SidePropagation.java 55 * Transition. A <code>propagationSpeed</code> of 1 means that a View centered at the side
61 * @param propagationSpeed The speed at which propagation occurs, relative to the duration
65 public void setPropagationSpeed(float propagationSpeed) {
66 if (propagationSpeed == 0) {
67 throw new IllegalArgumentException("propagationSpeed may not be 0");
69 mPropagationSpeed = propagationSpeed;

Completed in 2480 milliseconds