HomeSort by relevance Sort by last modified time
    Searched refs:mShapeH (Results 1 - 4 of 4) sorted by null

  /development/samples/devbytes/animation/Bouncer/src/com/example/android/bouncer/
Bouncer.java 57 int mShapeW, mShapeH;
78 mShapeH = mBitmap.getHeight();
97 invalidate(minX, mShapeY, maxX, mShapeY + mShapeH);
106 int maxY = mShapeY + mShapeH;
109 maxY = Math.max(mShapeY + mShapeH, maxY);
137 (getHeight() - mShapeH)));
Bouncer1.java 48 int mShapeW, mShapeH;
71 invalidate(minX, mShapeY, maxX, mShapeY + mShapeH);
76 int maxY = mShapeY + mShapeH;
79 maxY = Math.max(mShapeY + mShapeH, maxY);
86 mShapeH = mBitmap.getHeight();
121 setShapeY((int) (animation.getAnimatedFraction() * (getHeight() - mShapeH)));
Bouncer2.java 49 int mShapeW, mShapeH;
72 invalidate(minX, mShapeY, maxX, mShapeY + mShapeH);
77 int maxY = mShapeY + mShapeH;
80 maxY = Math.max(mShapeY + mShapeH, maxY);
87 mShapeH = mBitmap.getHeight();
124 setShapeY((int) (animation.getAnimatedFraction() * (getHeight() - mShapeH)));
Bouncer3.java 49 int mShapeW, mShapeH;
72 invalidate(minX, mShapeY, maxX, mShapeY + mShapeH);
77 int maxY = mShapeY + mShapeH;
80 maxY = Math.max(mShapeY + mShapeH, maxY);
87 mShapeH = mBitmap.getHeight();
120 return ObjectAnimator.ofInt(this, "shapeY", 0, (getHeight() - mShapeH));

Completed in 39 milliseconds