Lines Matching refs:mUnlockDefault

104     private DrawableHolder mUnlockDefault;
181 mUnlockDefault = new DrawableHolder(createDrawable(R.drawable.unlock_default));
182 mUnlockDefault.setX(mLockCenterX);
183 mUnlockDefault.setY(mLockCenterY);
184 mUnlockDefault.setScaleX(0.1f);
185 mUnlockDefault.setScaleY(0.1f);
186 mUnlockDefault.setAlpha(0.0f);
187 mDrawables.add(mUnlockDefault);
231 mUnlockDefault.removeAnimationFor("x");
232 mUnlockDefault.removeAnimationFor("y");
233 mUnlockDefault.removeAnimationFor("scaleX");
234 mUnlockDefault.removeAnimationFor("scaleY");
235 mUnlockDefault.removeAnimationFor("alpha");
236 mUnlockDefault.setX(mLockCenterX);
237 mUnlockDefault.setY(mLockCenterY);
238 mUnlockDefault.setScaleX(0.1f);
239 mUnlockDefault.setScaleY(0.1f);
240 mUnlockDefault.setAlpha(0.0f);
241 mUnlockDefault.addAnimTo(DURATION, SHORT_DELAY, "scaleX", 1.0f, true);
242 mUnlockDefault.addAnimTo(DURATION, SHORT_DELAY, "scaleY", 1.0f, true);
243 mUnlockDefault.addAnimTo(DURATION, SHORT_DELAY, "alpha", 1.0f, true);
273 mUnlockDefault.removeAnimationFor("x");
274 mUnlockDefault.removeAnimationFor("y");
275 mUnlockDefault.removeAnimationFor("scaleX");
276 mUnlockDefault.removeAnimationFor("scaleY");
277 mUnlockDefault.removeAnimationFor("alpha");
278 mUnlockDefault.setX(mLockCenterX + 182);
279 mUnlockDefault.setY(mLockCenterY);
280 mUnlockDefault.setScaleX(0.1f);
281 mUnlockDefault.setScaleY(0.1f);
282 mUnlockDefault.setAlpha(0.0f);
284 mUnlockDefault.addAnimTo(DURATION, SHORT_DELAY, "scaleX", 1.0f, false);
285 mUnlockDefault.addAnimTo(DURATION, SHORT_DELAY, "scaleY", 1.0f, false);
286 mUnlockDefault.addAnimTo(DURATION, SHORT_DELAY, "alpha", 1.0f, false);
349 mUnlockDefault.removeAnimationFor("x");
350 mUnlockDefault.removeAnimationFor("y");
351 mUnlockDefault.removeAnimationFor("scaleX");
352 mUnlockDefault.removeAnimationFor("scaleY");
353 mUnlockDefault.removeAnimationFor("alpha");
354 mUnlockDefault.setX(ringX);
355 mUnlockDefault.setY(ringY);
356 mUnlockDefault.setScaleX(0.1f);
357 mUnlockDefault.setScaleY(0.1f);
358 mUnlockDefault.setAlpha(0.0f);
360 mUnlockDefault.addAnimTo(FINAL_DURATION, 0, "x", ringX, true);
361 mUnlockDefault.addAnimTo(FINAL_DURATION, 0, "y", ringY, true);
362 mUnlockDefault.addAnimTo(FINAL_DURATION, 0, "scaleX", 1.0f, true);
363 mUnlockDefault.addAnimTo(FINAL_DURATION, 0, "scaleY", 1.0f, true);
364 mUnlockDefault.addAnimTo(FINAL_DURATION, 0, "alpha", 1.0f, true);
366 mUnlockDefault.addAnimTo(FINAL_DURATION, FINAL_DELAY, "scaleX", 3.0f, false);
367 mUnlockDefault.addAnimTo(FINAL_DURATION, FINAL_DELAY, "scaleY", 3.0f, false);
368 mUnlockDefault.addAnimTo(FINAL_DURATION, FINAL_DELAY, "alpha", 0.0f, false);
397 mUnlockDefault.startAnimations(this);