Searched refs:alphaAnim (Results 1 – 8 of 8) sorted by relevance
/frameworks/base/tests/graphics/HwAccelerationTest/src/com/android/test/hwui/ |
D | TransformsAndAnimationsActivity.java | 116 final AlphaAnimation alphaAnim = new AlphaAnimation(1, 0); in onCreate() local 117 alphaAnim.setDuration(1000); in onCreate() 118 alphaAnim.setRepeatCount(Animation.INFINITE); in onCreate() 119 alphaAnim.setRepeatMode(Animation.REVERSE); in onCreate() 129 button1.startAnimation(alphaAnim); in onCreate() 130 button2.startAnimation(alphaAnim); in onCreate() 131 button3.startAnimation(alphaAnim); in onCreate() 133 button1a.startAnimation(alphaAnim); in onCreate() 134 button2a.startAnimation(alphaAnim); in onCreate() 135 button3a.startAnimation(alphaAnim); in onCreate() [all …]
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/ |
D | AppearAnimationUtils.java | 196 Animator alphaAnim; in createAnimation() local 202 alphaAnim = alphaAnimRt; in createAnimation() 204 alphaAnim = ObjectAnimator.ofFloat(view, View.ALPHA, view.getAlpha(), targetAlpha); in createAnimation() 206 alphaAnim.setInterpolator(interpolator); in createAnimation() 207 alphaAnim.setDuration(duration); in createAnimation() 208 alphaAnim.setStartDelay(delay); in createAnimation() 211 alphaAnim.addListener(new AnimatorListenerAdapter() { in createAnimation() 218 alphaAnim.addListener(new AnimatorListenerAdapter() { in createAnimation() 227 alphaAnim.start(); in createAnimation()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/bubbles/ |
D | DismissView.kt | 144 val alphaAnim = ObjectAnimator.ofInt(gradientDrawable, GRADIENT_ALPHA, in show() constant 146 alphaAnim.setDuration(DISMISS_SCRIM_FADE_MS) in show() 147 alphaAnim.start() in show() 163 val alphaAnim = ObjectAnimator.ofInt(gradientDrawable, GRADIENT_ALPHA, in hide() constant 165 alphaAnim.setDuration(DISMISS_SCRIM_FADE_MS) in hide() 166 alphaAnim.start() in hide()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/clipboardoverlay/ |
D | ClipboardOverlayView.java | 404 ValueAnimator alphaAnim = ValueAnimator.ofFloat(0, 1); in getEnterAnimation() local 405 alphaAnim.setInterpolator(linearInterpolator); in getEnterAnimation() 406 alphaAnim.setDuration(283); in getEnterAnimation() 407 alphaAnim.addUpdateListener(animation -> { in getEnterAnimation() 421 enterAnim.play(alphaAnim).after(50).after(rootAnim); in getEnterAnimation() 434 ValueAnimator alphaAnim = ValueAnimator.ofFloat(1, 0); in getFadeOutAnimation() local 435 alphaAnim.addUpdateListener(animation -> { in getFadeOutAnimation() 442 alphaAnim.setDuration(300); in getFadeOutAnimation() 443 return alphaAnim; in getFadeOutAnimation() 479 ValueAnimator alphaAnim = ValueAnimator.ofFloat(0, 1); in getExitAnimation() local [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/floatingmenu/ |
D | DragToInteractView.kt | 189 val alphaAnim = in show() constant 191 alphaAnim.duration = INTERACT_SCRIM_FADE_MS in show() 192 alphaAnim.start() in show() 211 val alphaAnim = in hide() constant 213 alphaAnim.duration = INTERACT_SCRIM_FADE_MS in hide() 214 alphaAnim.start() in hide()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | SlidingTab.java | 294 AlphaAnimation alphaAnim = new AlphaAnimation(0.0f, 1.0f); in showTarget() local 295 alphaAnim.setDuration(ANIM_TARGET_TIME); in showTarget() 296 target.startAnimation(alphaAnim); in showTarget()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/ |
D | ScreenshotView.java | 1082 ValueAnimator alphaAnim = ValueAnimator.ofFloat(0, 1); in createScreenshotFadeDismissAnimation() local 1083 alphaAnim.addUpdateListener(animation -> { in createScreenshotFadeDismissAnimation() 1091 alphaAnim.setDuration(600); in createScreenshotFadeDismissAnimation() 1092 return alphaAnim; in createScreenshotFadeDismissAnimation()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | KeyguardSecurityContainer.java | 1102 ObjectAnimator alphaAnim = ObjectAnimator.ofFloat(mUserSwitcherViewGroup, View.ALPHA, in startDisappearAnimation() local 1106 anims.playTogether(alphaAnim, yAnim); in startDisappearAnimation()
|