HomeSort by relevance Sort by last modified time
    Searched defs:mAnimation (Results 1 - 25 of 40) sorted by null

1 2

  /developers/build/prebuilts/gradle/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/
AnimatedNotificationDisplayActivity.java 45 private Animator mAnimation;
77 mAnimation = ObjectAnimator.ofPropertyValuesHolder(mImageView,
80 mAnimation.setInterpolator(new AccelerateDecelerateInterpolator());
82 mAnimation.setDuration(Math.max(BASE_ANIMATION_DURATION_MS / 10,
85 mAnimation.addListener(new AnimatorListenerAdapter() {
93 mAnimation.start();
100 mAnimation.start();
105 mAnimation.pause();
  /developers/samples/android/wearable/wear/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/
AnimatedNotificationDisplayActivity.java 45 private Animator mAnimation;
77 mAnimation = ObjectAnimator.ofPropertyValuesHolder(mImageView,
80 mAnimation.setInterpolator(new AccelerateDecelerateInterpolator());
82 mAnimation.setDuration(Math.max(BASE_ANIMATION_DURATION_MS / 10,
85 mAnimation.addListener(new AnimatorListenerAdapter() {
93 mAnimation.start();
100 mAnimation.start();
105 mAnimation.pause();
  /development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/
AnimatedNotificationDisplayActivity.java 45 private Animator mAnimation;
77 mAnimation = ObjectAnimator.ofPropertyValuesHolder(mImageView,
80 mAnimation.setInterpolator(new AccelerateDecelerateInterpolator());
82 mAnimation.setDuration(Math.max(BASE_ANIMATION_DURATION_MS / 10,
85 mAnimation.addListener(new AnimatorListenerAdapter() {
93 mAnimation.start();
100 mAnimation.start();
105 mAnimation.pause();
  /cts/tests/tests/view/src/android/view/cts/
View_AnimationTest.java 56 private TranslateAnimation mAnimation;
66 mAnimation = new TranslateAnimation(0.0f, 10.0f, 0.0f, 10.0f);
67 mAnimation.setDuration(DURATION);
77 view.setAnimation(mAnimation);
80 AnimationTestUtils.assertRunAnimation(mInstrumentation, mActivityRule, view, mAnimation,
94 mActivityRule.runOnUiThread(() -> view.startAnimation(mAnimation));
96 AnimationTestUtils.assertRunAnimation(mInstrumentation, mActivityRule, view, mAnimation,
103 assertFalse(mAnimation.hasStarted());
105 view.setAnimation(mAnimation);
107 assertSame(mAnimation, view.getAnimation())
    [all...]
  /packages/apps/Settings/src/com/android/settings/fingerprint/
FingerprintEnrollFindSensor.java 43 private FingerprintFindSensorAnimation mAnimation;
68 mAnimation = (FingerprintFindSensorAnimation) animationView;
70 mAnimation = null;
81 if (mAnimation != null) {
82 mAnimation.startAnimation();
118 if (mAnimation != null) {
119 mAnimation.pauseAnimation();
126 if (mAnimation != null) {
127 mAnimation.stopAnimation();
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
AnimateDrawable.java 27 private Animation mAnimation;
36 mAnimation = animation;
40 return mAnimation;
44 mAnimation = anim;
48 return mAnimation != null && mAnimation.hasStarted();
52 return mAnimation == null || mAnimation.hasEnded();
60 Animation anim = mAnimation;
  /external/replicaisland/src/com/replica/replicaisland/
AnimationPlayerActivity.java 43 private AnimationDrawable mAnimation;
83 mAnimation = (AnimationDrawable) canvasImage.getDrawable();
173 if (hasFocus && mAnimation != null) {
174 mAnimation.start();
175 mKillActivityHandler.sleep(mAnimation.getDuration(0) * mAnimation.getNumberOfFrames());
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
HardwareUiLayout.java 50 private AnimatorSet mAnimation;
328 mAnimation.cancel();
331 mAnimation = new AnimatorSet();
332 mAnimation.addListener(new AnimatorListenerAdapter() {
344 mAnimation.playTogether(top,
  /frameworks/base/core/java/android/view/animation/
LayoutAnimationController.java 78 protected Animation mAnimation;
201 mAnimation = animation;
202 mAnimation.setFillBefore(true);
215 return mAnimation;
301 mDuration = mAnimation.getDuration();
303 mAnimation.setStartTime(-1);
323 final long delay = getDelayForView(view) + mAnimation.getStartOffset();
327 final Animation animation = mAnimation.clone();
343 mAnimation.getStartTime() + mMaxDelay + mDuration;
378 final float delay = mDelay * mAnimation.getDuration()
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/camerafocus/
PieRenderer.java 47 private ScaleAnimation mAnimation = new ScaleAnimation();
601 mAnimation.cancel();
602 mAnimation.reset();
714 if (mAnimation != null) {
715 mAnimation.cancel();
737 mAnimation.reset();
738 mAnimation.setDuration(duration);
739 mAnimation.setScale(fromScale, toScale);
740 mAnimation.setAnimationListener(timeout ? mEndAction : null);
741 mOverlay.startAnimation(mAnimation);
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/camerafocus/
PieRenderer.java 49 private ScaleAnimation mAnimation = new ScaleAnimation();
602 mAnimation.cancel();
603 mAnimation.reset();
716 if (mAnimation != null) {
717 mAnimation.cancel();
742 mAnimation.reset();
743 mAnimation.setDuration(duration);
744 mAnimation.setScale(fromScale, toScale);
745 mAnimation.setAnimationListener(timeout ? mEndAction : null);
746 mOverlay.startAnimation(mAnimation);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
GLView.java 67 private CanvasAnimation mAnimation;
88 mAnimation = animation;
89 if (mAnimation != null) {
90 mAnimation.start();
91 root.registerLaunchedAnimation(mAnimation);
269 && component.mAnimation == null) return;
276 CanvasAnimation anim = component.mAnimation;
282 component.mAnimation = null;
SlotView.java 71 private SlotAnimation mAnimation = null;
170 mAnimation = new ScatteringAnimation(position);
171 mAnimation.start();
176 mAnimation = new RisingAnimation();
177 mAnimation.start();
270 if (mAnimation != null) {
271 more |= mAnimation.calculate(animTime);
322 if (mAnimation != null && mAnimation.isActive()) {
323 mAnimation.apply(canvas, index, rect)
    [all...]
  /frameworks/base/core/java/android/widget/
ProgressBar.java 187 private AlphaAnimation mAnimation;
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
DragState.java 104 private Animation mAnimation;
391 if (mAnimation != null) {
395 mAnimation = createReturnAnimationLocked();
403 if (mAnimation != null) {
406 mAnimation = createCancelAnimationLocked();
425 if (mAnimation != null) {
494 if (mAnimation != null) {
564 if (mAnimation == null) {
569 if (!mAnimation.getTransformation(currentTimeMs, mTransformation)) {
WindowStateAnimator.java 116 Animation mAnimation;
271 mAnimation = anim;
272 mAnimation.restrictDuration(WindowManagerService.MAX_ANIMATION_DURATION);
273 mAnimation.scaleCurrentDuration(mService.getWindowAnimationScaleLocked());
291 if (mAnimation != null) {
294 mAnimation.cancel();
295 mAnimation = null;
304 return mAnimation != null
305 || (mParentWinAnimator != null && mParentWinAnimator.mAnimation != null)
327 return mAnimation != null
    [all...]
  /frameworks/native/libs/gui/
SurfaceComposerClient.cpp 123 bool mAnimation;
127 mAnimation(false)
266 if (mAnimation) {
271 mAnimation = false;
289 mAnimation = true;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
RenderPreviewManager.java 117 private SwapAnimation mAnimation;
666 if (mAnimation != null) {
667 mAnimation.tick(gc);
    [all...]
  /external/robolectric/v1/lib/main/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 

Completed in 375 milliseconds

1 2