Home
last modified time | relevance | path

Searched refs:scrimView (Results 1 – 8 of 8) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/unfold/
H A DUnfoldLightRevealOverlayAnimation.kt67 private var scrimView: LightRevealScrim? = null
177 scrimView = newView
217 scrimView = null
230 scrimView?.revealAmount = progress
239 if (scrimView == null) {
251 scrimView?.revealEffect = createLightRevealEffect()
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/
H A DTaskbarScrimViewController.java47 public TaskbarScrimViewController(TaskbarActivityContext activity, TaskbarScrimView scrimView) { in TaskbarScrimViewController() argument
49 mScrimView = scrimView; in TaskbarScrimViewController()
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/allapps/
H A DAllAppsTransitionController.java204 public void setupViews(ScrimView scrimView, AllAppsContainerView appsView) { in setupViews() argument
205 mScrimView = scrimView; in setupViews()
212 mAppsView.setScrimView(scrimView); in setupViews()
H A DAllAppsContainerView.java661 public void setScrimView(ScrimView scrimView) { in setScrimView() argument
662 mScrimView = scrimView; in setScrimView()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DScrimControllerTest.java182 private void endAnimation(View scrimView) { in endAnimation() argument
183 Animator animator = getAnimator(scrimView); in endAnimation()
189 private Animator getAnimator(View scrimView) { in getAnimator() argument
190 return (Animator) scrimView.getTag(ScrimController.TAG_KEY_ANIM); in getAnimator()
1311 scrimToAlpha.forEach((scrimView, alpha) -> assertScrimAlpha(scrimView, alpha)); in assertScrimAlpha()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DScrimController.java956 ScrimView scrimView = (ScrimView) scrim; in updateScrimColor() local
958 Trace.traceCounter(Trace.TRACE_TAG_APP, getScrimName(scrimView) + "_alpha", in updateScrimColor()
961 Trace.traceCounter(Trace.TRACE_TAG_APP, getScrimName(scrimView) + "_tint", in updateScrimColor()
963 scrimView.setTint(tint); in updateScrimColor()
964 scrimView.setViewAlpha(alpha); in updateScrimColor()
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
H A DBaseActivityInterface.java377 ScrimView scrimView = activity.getScrimView(); in getParallelAnimationToLauncher() local
378 ObjectAnimator anim = ObjectAnimator.ofArgb(scrimView, VIEW_BACKGROUND_COLOR, in getParallelAnimationToLauncher()
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/launcher3/
H A DQuickstepTransitionManager.java544 ScrimView scrimView = mLauncher.getScrimView(); in getLauncherContentAnimator() local
545 if (scrimView.getBackground() instanceof ColorDrawable) { in getLauncherContentAnimator()
546 scrimView.setBackgroundColor(colors[0]); in getLauncherContentAnimator()
548 ObjectAnimator scrim = ObjectAnimator.ofArgb(scrimView, VIEW_BACKGROUND_COLOR, in getLauncherContentAnimator()