Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DPhoneStatusBarTransitions.java79 float newAlpha = getNonBatteryClockAlphaFor(mode); in applyMode() local
87 animateTransitionTo(mLeftSide, newAlpha), in applyMode()
88 animateTransitionTo(mStatusIcons, newAlpha), in applyMode()
97 mLeftSide.setAlpha(newAlpha); in applyMode()
98 mStatusIcons.setAlpha(newAlpha); in applyMode()
DNotificationPanelViewController.java2987 float newAlpha = Math.min(getKeyguardContentsAlpha(), alphaQsExpansion) in updateHeaderKeyguardAlpha() local
2989 newAlpha *= 1.0f - mKeyguardHeadsUpShowingAmount; in updateHeaderKeyguardAlpha()
2990 mKeyguardStatusBar.setAlpha(newAlpha); in updateHeaderKeyguardAlpha()
2996 newAlpha != 0f && !mDozing && !hideForBypass ? View.VISIBLE : View.INVISIBLE); in updateHeaderKeyguardAlpha()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DSignalTileView.java143 final float newAlpha = shown && visible ? 1 : 0; in setVisibility() local
144 if (view.getAlpha() == newAlpha) return; in setVisibility()
148 .alpha(newAlpha) in setVisibility()
151 view.setAlpha(newAlpha); in setVisibility()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DViewGroupFadeHelper.kt65 val newAlpha = animation.animatedValue as Float in <lambda>() constant
72 viewToFade.alpha = newAlpha in <lambda>()
74 root.setTag(R.id.view_group_fade_helper_previous_value_tag, newAlpha) in <lambda>()
/frameworks/libs/systemui/iconloaderlib/src/com/android/launcher3/icons/
DPlaceHolderIconDrawable.java65 int newAlpha = (int) valueAnimator.getAnimatedValue(); in animateIconUpdate()
66 int newColor = ColorUtils.setAlphaComponent(placeholderColor, newAlpha); in animateIconUpdate()
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/ui/
DControlViewHolder.kt319 val (newClipColor, newAlpha) = if (enabled) { in animateBackgroundChange() constant
342 startBackgroundAnimation(this, newAlpha, newClipColor, newBaseColor) in animateBackgroundChange()
345 this, newAlpha, newClipColor, newBaseColor, newLayoutAlpha = 1f in animateBackgroundChange()
353 newAlpha: Int, in startBackgroundAnimation()
365 stateAnimator = ValueAnimator.ofInt(clipLayer.alpha, newAlpha).apply { in startBackgroundAnimation()
400 newAlpha: Int, in applyBackgroundChange()
405 clipDrawable.alpha = newAlpha in applyBackgroundChange()
/frameworks/base/core/java/android/widget/
DTextViewTranslationCallback.java261 private static int colorWithAlpha(int color, int newAlpha) { in colorWithAlpha() argument
262 return Color.argb(newAlpha, Color.red(color), Color.green(color), Color.blue(color)); in colorWithAlpha()
DEditor.java4119 final int newAlpha = (int) (Color.alpha(underlineColor) * BACKGROUND_TRANSPARENCY); in updateSuggestions() local
4121 (underlineColor & 0x00FFFFFF) + (newAlpha << 24)); in updateSuggestions()