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/notification/
PropertyAnimator.java 39 AnimatableProperty animatableProperty, float newEndValue,
44 startAnimation(view, animatableProperty, newEndValue, properties);
47 animatableProperty.getProperty().set(view, newEndValue);
52 AnimatableProperty animatableProperty, float newEndValue,
59 if (previousEndValue != null && previousEndValue == newEndValue) {
71 float relativeDiff = newEndValue - previousEndValue;
73 values[0].setFloatValues(newStartValue, newEndValue);
75 view.setTag(animationEndTag, newEndValue);
80 property.set(view, newEndValue);
86 ValueAnimator animator = ValueAnimator.ofFloat(currentValue, newEndValue);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
ExpandableViewState.java 253 int newEndValue = this.height;
254 if (previousEndValue != null && previousEndValue == newEndValue) {
265 int relativeDiff = newEndValue - previousEndValue;
267 values[0].setIntValues(newStartValue, newEndValue);
269 child.setTag(TAG_END_HEIGHT, newEndValue);
274 child.setActualHeight(newEndValue, false);
279 ValueAnimator animator = ValueAnimator.ofInt(child.getActualHeight(), newEndValue);
327 child.setTag(TAG_END_HEIGHT, newEndValue);
335 float newEndValue = this.shadowAlpha;
336 if (previousEndValue != null && previousEndValue == newEndValue) {
    [all...]
ViewState.java 326 final float newEndValue = this.alpha;
327 if (previousEndValue != null && previousEndValue == newEndValue) {
338 float relativeDiff = newEndValue - previousEndValue;
340 values[0].setFloatValues(newStartValue, newEndValue);
342 child.setTag(TAG_END_ALPHA, newEndValue);
347 child.setAlpha(newEndValue);
348 if (newEndValue == 0) {
355 child.getAlpha(), newEndValue);
365 if (newEndValue == 0 && !mWasCancelled) {
398 child.setTag(TAG_END_ALPHA, newEndValue);
    [all...]
NotificationStackScrollLayout.java     [all...]

Completed in 98 milliseconds