Home
last modified time | relevance | path

Searched refs:ShapeHolder (Results 1 – 9 of 9) sorted by relevance

/development/samples/ApiDemos/src/com/example/android/apis/animation/
DAnimationCloning.java63 public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>();
72 ShapeHolder ball0 = addBall(50f, 25f); in MyAnimationView()
73 ShapeHolder ball1 = addBall(150f, 25f); in MyAnimationView()
74 ShapeHolder ball2 = addBall(250f, 25f); in MyAnimationView()
75 ShapeHolder ball3 = addBall(350f, 25f); in MyAnimationView()
86 ShapeHolder ball2 = balls.get(2); in createAnimation()
106 private ShapeHolder addBall(float x, float y) { in addBall()
110 ShapeHolder shapeHolder = new ShapeHolder(drawable); in addBall()
130 ShapeHolder shapeHolder = balls.get(i); in onDraw()
DCustomEvaluator.java96 private ShapeHolder mBall;
98 public BallXYHolder(ShapeHolder ball) { in BallXYHolder()
114 public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>();
116 ShapeHolder ball = null;
141 private ShapeHolder createBall(float x, float y) { in createBall()
145 ShapeHolder shapeHolder = new ShapeHolder(drawable); in createBall()
DAnimationLoading.java72 public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>();
152 private ShapeHolder createBall(float x, float y) { in createBall()
156 ShapeHolder shapeHolder = new ShapeHolder(drawable); in createBall()
163 ShapeHolder shapeHolder = createBall(x, y); in addBall()
169 ShapeHolder shapeHolder = createBall(x, y); in addBall()
184 for (ShapeHolder ball : balls) { in onDraw()
194 ShapeHolder ball = balls.get(0); in onAnimationUpdate()
DReversingAnimation.java69 public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>();
71 ShapeHolder ball = null;
102 private ShapeHolder createBall(float x, float y) { in createBall()
106 ShapeHolder shapeHolder = new ShapeHolder(drawable); in createBall()
DMultiPropertyAnimation.java72 public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>();
75 ShapeHolder ball = null;
87 ShapeHolder ball; in createAnimation()
143 private ShapeHolder addBall(float x, float y) { in addBall()
147 ShapeHolder shapeHolder = new ShapeHolder(drawable); in addBall()
166 for (ShapeHolder ball : balls) { in onDraw()
DAnimationSeeking.java97 public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>();
100 ShapeHolder ball = null;
126 private ShapeHolder addBall(float x, float y) { in addBall()
130 ShapeHolder shapeHolder = new ShapeHolder(drawable); in addBall()
DBouncingBalls.java60 public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>();
84 ShapeHolder newBall = addBall(event.getX(), event.getY()); in onTouchEvent()
152 private ShapeHolder addBall(float x, float y) { in addBall()
156 ShapeHolder shapeHolder = new ShapeHolder(drawable); in addBall()
176 ShapeHolder shapeHolder = balls.get(i); in onDraw()
DAnimatorEvents.java108 public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>();
110 ShapeHolder ball = null;
170 private ShapeHolder createBall(float x, float y) { in createBall()
174 ShapeHolder shapeHolder = new ShapeHolder(drawable); in createBall()
DShapeHolder.java29 public class ShapeHolder { class
97 public ShapeHolder(ShapeDrawable s) { in ShapeHolder() method in ShapeHolder