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

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
ExpandableViewState.java 237 int newEndValue = this.height;
238 if (previousEndValue != null && previousEndValue == newEndValue) {
249 int relativeDiff = newEndValue - previousEndValue;
251 values[0].setIntValues(newStartValue, newEndValue);
253 child.setTag(TAG_END_HEIGHT, newEndValue);
258 child.setActualHeight(newEndValue, false);
263 ValueAnimator animator = ValueAnimator.ofInt(child.getActualHeight(), newEndValue);
311 child.setTag(TAG_END_HEIGHT, newEndValue);
319 float newEndValue = this.shadowAlpha;
320 if (previousEndValue != null && previousEndValue == newEndValue) {
    [all...]
ViewState.java 327 final float newEndValue = this.alpha;
328 if (previousEndValue != null && previousEndValue == newEndValue) {
339 float relativeDiff = newEndValue - previousEndValue;
341 values[0].setFloatValues(newStartValue, newEndValue);
343 child.setTag(TAG_END_ALPHA, newEndValue);
348 child.setAlpha(newEndValue);
349 if (newEndValue == 0) {
356 child.getAlpha(), newEndValue);
366 if (newEndValue == 0 && !mWasCancelled) {
399 child.setTag(TAG_END_ALPHA, newEndValue);
    [all...]
NotificationStackScrollLayout.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
PropertyAnimator.java 38 AnimatableProperty animatableProperty, float newEndValue,
45 if (previousEndValue != null && previousEndValue == newEndValue) {
57 float relativeDiff = newEndValue - previousEndValue;
59 values[0].setFloatValues(newStartValue, newEndValue);
61 view.setTag(animationEndTag, newEndValue);
66 property.set(view, newEndValue);
72 ValueAnimator animator = ValueAnimator.ofFloat(currentValue, newEndValue);
102 view.setTag(animationEndTag, newEndValue);

Completed in 75 milliseconds