Searched refs:mDropShadowView (Results 1 - 1 of 1) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/
H A DDropShadowController.java42 /** Updates {@link #mDropShadowView} in response to changes in the backing scroll model. */
45 /** Fades the {@link @mDropShadowView} in/out as scroll state changes. */
49 private final View mDropShadowView; field in class:DropShadowController
96 mDropShadowView = dropShadowView;
97 mDropShadowAnimator = getAlphaAnimator(mDropShadowView, 0f, 1f)
120 if (!shouldShowDropShadow && mDropShadowView.getAlpha() != 0f) {
124 mDropShadowView.setAlpha(0f);
131 if (shouldShowDropShadow && mDropShadowView.getAlpha() != 1f) {
135 mDropShadowView.setAlpha(1f);

Completed in 370 milliseconds