Searched defs:dimmed (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DExpandableViewState.java90 public boolean dimmed; field in class:ExpandableViewState
127 dimmed = svs.dimmed;
165 expandableView.setDimmed(this.dimmed, false /* animate */);
222 // start dimmed animation
223 expandableView.setDimmed(this.dimmed, animationFilter.animateDimmed);
H A DAmbientState.java140 * @param dimmed Whether we are in a dimmed state (on the lockscreen), where the backgrounds are
143 public void setDimmed(boolean dimmed) { argument
144 mDimmed = dimmed;
167 * In dimmed mode, a child can be activated, which happens on the first tap of the double-tap
H A DNotificationStackScrollLayout.java3801 public void setDimmed(boolean dimmed, boolean animate) { argument
3802 dimmed &= onKeyguard();
3803 mAmbientState.setDimmed(dimmed);
3807 animateDimmed(dimmed);
3809 setDimAmount(dimmed ? 1.0f : 0.0f);
3824 private void animateDimmed(boolean dimmed) { argument
3828 float target = dimmed ? 1.0f : 0.0f;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableView.java197 * Sets the notification as dimmed. The default implementation does nothing.
199 * @param dimmed Whether the notification should be dimmed.
202 public void setDimmed(boolean dimmed, boolean fade) { argument
H A DActivatableNotificationView.java328 // We're actually dimmed, but our content isn't dimmable, let's ensure we have a ripple
430 public void setDimmed(boolean dimmed, boolean fade) { argument
431 mNeedsDimming = dimmed;
432 dimmed &= isDimmable();
433 if (mDimmed != dimmed) {
434 mDimmed = dimmed;
634 * Fades the background when the dimmed state changes.
702 // normal background instead of the dimmed background

Completed in 162 milliseconds