HomeSort by relevance Sort by last modified time
    Searched refs:dimmed (Results 1 - 10 of 10) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
StackViewState.java 41 public boolean dimmed; field in class:StackViewState
76 dimmed = svs.dimmed;
AmbientState.java 69 * @param dimmed Whether we are in a dimmed state (on the lockscreen), where the backgrounds are
72 public void setDimmed(boolean dimmed) {
73 mDimmed = dimmed;
86 * In dimmed mode, a child can be activated, which happens on the first tap of the double-tap
StackScrollAlgorithm.java 81 private void updatePadding(boolean dimmed) {
82 mPaddingBetweenElements = dimmed && mScaleDimmed
231 float clippingCorrection = state.dimmed
290 * Updates the dimmed, activated and hiding sensitive states of the children.
294 boolean dimmed = ambientState.isDimmed();
302 childViewState.dimmed = dimmed;
306 childViewState.scale = !mScaleDimmed || !dimmed || isActivatedChild
309 if (dimmed && isActivatedChild) {
    [all...]
NotificationChildrenContainer.java 268 childState.dimmed = parentState.dimmed;
StackScrollState.java 150 view.setDimmed(state.dimmed, false /* animate */);
NotificationStackScrollLayout.java 318 private void updatePadding(boolean dimmed) {
319 mPaddingBetweenElements = dimmed && mStackScrollAlgorithm.shouldScaleDimmed()
    [all...]
StackStateAnimator.java 244 // start dimmed animation
245 child.setDimmed(viewState.dimmed, mAnimationFilter.animateDimmed);
    [all...]
  /packages/apps/Settings/src/com/android/settings/
DimmableIconPreference.java 48 private void dimIcon(boolean dimmed) {
51 icon.mutate().setAlpha(dimmed ? ICON_ALPHA_DISABLED : ICON_ALPHA_ENABLED);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ActivatableNotificationView.java 321 public void setDimmed(boolean dimmed, boolean fade) {
322 if (mDimmed != dimmed) {
323 mDimmed = dimmed;
420 * Fades the background when the dimmed state changes.
ExpandableView.java 229 * Sets the notification as dimmed. The default implementation does nothing.
231 * @param dimmed Whether the notification should be dimmed.
234 public void setDimmed(boolean dimmed, boolean fade) {

Completed in 127 milliseconds