/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | ImageTransformState.java | 62 public void appear(float transformationAmount, TransformableView otherView) { in appear() argument 64 if (transformationAmount == 0.0f) { in appear() 69 transformationAmount = mapToDuration(transformationAmount); in appear() 70 CrossFadeHelper.fadeIn(mTransformedView, transformationAmount, false /* remap */); in appear() 71 transformationAmount = Interpolators.LINEAR_OUT_SLOW_IN.getInterpolation( in appear() 72 transformationAmount); in appear() 73 mTransformedView.setScaleX(transformationAmount); in appear() 74 mTransformedView.setScaleY(transformationAmount); in appear() 76 super.appear(transformationAmount, otherView); in appear() 81 public void disappear(float transformationAmount, TransformableView otherView) { in disappear() argument [all …]
|
D | MessagingLayoutTransformState.java | 68 public boolean transformViewTo(TransformState otherState, float transformationAmount) { in transformViewTo() argument 71 transformViewInternal((MessagingLayoutTransformState) otherState, transformationAmount, in transformViewTo() local 75 return super.transformViewTo(otherState, transformationAmount); in transformViewTo() 80 public void transformViewFrom(TransformState otherState, float transformationAmount) { in transformViewFrom() argument 83 transformViewInternal((MessagingLayoutTransformState) otherState, transformationAmount, in transformViewFrom() local 86 super.transformViewFrom(otherState, transformationAmount); in transformViewFrom() 91 float transformationAmount, boolean to) { in transformViewInternal() argument 105 transformGroups(ownGroup, matchingGroup, transformationAmount, to); in transformViewInternal() 117 float groupTransformationAmount = transformationAmount; in transformViewInternal() 119 adaptGroupAppear(ownGroup, transformationAmount, currentTranslation, in transformViewInternal() [all …]
|
D | TransformState.java | 93 public void transformViewFrom(TransformState otherState, float transformationAmount) { in transformViewFrom() argument 98 CrossFadeHelper.fadeIn(mTransformedView, transformationAmount); in transformViewFrom() 100 transformViewFullyFrom(otherState, transformationAmount); in transformViewFrom() 112 public void transformViewFullyFrom(TransformState otherState, float transformationAmount) { in transformViewFullyFrom() argument 113 transformViewFrom(otherState, TRANSFORM_ALL, null, transformationAmount); in transformViewFullyFrom() 118 float transformationAmount) { in transformViewFullyFrom() argument 119 transformViewFrom(otherState, TRANSFORM_ALL, customTransformation, transformationAmount); in transformViewFullyFrom() 124 float transformationAmount) { in transformViewVerticalFrom() argument 125 transformViewFrom(otherState, TRANSFORM_Y, customTransformation, transformationAmount); in transformViewVerticalFrom() 128 public void transformViewVerticalFrom(TransformState otherState, float transformationAmount) { in transformViewVerticalFrom() argument [all …]
|
D | CustomInterpolatorTransformation.java | 39 float transformationAmount) { in transformTo() argument 48 CrossFadeHelper.fadeOut(view, transformationAmount); in transformTo() 49 ownState.transformViewFullyTo(otherState, this, transformationAmount); in transformTo() 60 TransformableView notification, float transformationAmount) { in transformFrom() argument 69 CrossFadeHelper.fadeIn(view, transformationAmount); in transformFrom() 70 ownState.transformViewFullyFrom(otherState, this, transformationAmount); in transformFrom()
|
D | MessagingImageTransformState.java | 70 float transformationAmount) { in transformViewFrom() argument 72 transformationAmount); in transformViewFrom() 74 transformationAmount); in transformViewFrom() 78 if (transformationAmount == 0.0f) { in transformViewFrom()
|
D | ActionListTransformState.java | 43 public void transformViewFullyFrom(TransformState otherState, float transformationAmount) { in transformViewFullyFrom() argument 48 public void transformViewFullyTo(TransformState otherState, float transformationAmount) { in transformViewFullyTo() argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | HybridNotificationView.java | 79 float transformationAmount) { in onFinishInflate() 83 CrossFadeHelper.fadeOut(mTextView, transformationAmount); in onFinishInflate() 85 ownState.transformViewVerticalTo(otherState, transformationAmount); in onFinishInflate() 93 TransformableView notification, float transformationAmount) { in onFinishInflate() 97 CrossFadeHelper.fadeIn(mTextView, transformationAmount); in onFinishInflate() 99 ownState.transformViewVerticalFrom(otherState, transformationAmount); in onFinishInflate() 137 public void transformTo(TransformableView notification, float transformationAmount) { in transformTo() argument 138 mTransformationHelper.transformTo(notification, transformationAmount); in transformTo() 147 public void transformFrom(TransformableView notification, float transformationAmount) { in transformFrom() argument 148 mTransformationHelper.transformFrom(notification, transformationAmount); in transformFrom()
|
D | NotificationContentView.java | 655 float transformationAmount = calculateTransformationAmount(); in updateContentTransformation() local 656 shownView.transformFrom(hiddenView, transformationAmount); in updateContentTransformation() 657 hiddenView.transformTo(shownView, transformationAmount); in updateContentTransformation() 658 updateBackgroundTransformation(transformationAmount); in updateContentTransformation() 665 private void updateBackgroundTransformation(float transformationAmount) { in updateBackgroundTransformation() argument 676 transformationAmount); in updateBackgroundTransformation() 678 mContainingNotification.updateBackgroundAlpha(transformationAmount); in updateBackgroundTransformation()
|
D | ActivatableNotificationView.java | 639 protected void updateBackgroundAlpha(float transformationAmount) { in updateBackgroundAlpha() argument 640 mBgAlpha = isChildInGroup() && mDimmed ? transformationAmount : 1f; in updateBackgroundAlpha()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | ViewTransformationHelper.java | 107 public void transformTo(TransformableView notification, float transformationAmount) { in transformTo() argument 113 ownState, notification, transformationAmount)) { in transformTo() 119 ownState.transformViewTo(otherState, transformationAmount); in transformTo() 122 ownState.disappear(transformationAmount, notification); in transformTo() 164 public void transformFrom(TransformableView notification, float transformationAmount) { in transformFrom() argument 170 ownState, notification, transformationAmount)) { in transformFrom() 176 ownState.transformViewFrom(otherState, transformationAmount); in transformFrom() 179 ownState.appear(transformationAmount, notification); in transformFrom() 277 float transformationAmount); in transformTo() argument 288 float transformationAmount); in transformFrom() argument
|
D | TransformableView.java | 53 void transformTo(TransformableView notification, float transformationAmount); in transformTo() argument 68 void transformFrom(TransformableView notification, float transformationAmount); in transformFrom() argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/ |
D | NotificationHeaderViewWrapper.java | 206 public void transformTo(TransformableView notification, float transformationAmount) { in transformTo() argument 207 mTransformationHelper.transformTo(notification, transformationAmount); in transformTo() 216 public void transformFrom(TransformableView notification, float transformationAmount) { in transformFrom() argument 217 mTransformationHelper.transformFrom(notification, transformationAmount); in transformFrom()
|
D | NotificationTemplateViewWrapper.java | 78 TransformableView notification, final float transformationAmount) { in NotificationTemplateViewWrapper() 85 CrossFadeHelper.fadeOut(text, transformationAmount); in NotificationTemplateViewWrapper() 88 transformationAmount); in NotificationTemplateViewWrapper() 104 TransformableView notification, float transformationAmount) { in NotificationTemplateViewWrapper() 111 CrossFadeHelper.fadeIn(text, transformationAmount); in NotificationTemplateViewWrapper() 114 transformationAmount); in NotificationTemplateViewWrapper()
|
D | NotificationViewWrapper.java | 243 public void transformTo(TransformableView notification, float transformationAmount) { in transformTo() argument 244 CrossFadeHelper.fadeOut(mView, transformationAmount); in transformTo() 254 public void transformFrom(TransformableView notification, float transformationAmount) { in transformFrom() argument 255 CrossFadeHelper.fadeIn(mView, transformationAmount); in transformFrom()
|