/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | ImageTransformState.java | 63 public void appear(float transformationAmount, TransformableView otherView) { in appear() argument 65 if (transformationAmount == 0.0f) { in appear() 70 transformationAmount = mapToDuration(transformationAmount); in appear() 71 CrossFadeHelper.fadeIn(mTransformedView, transformationAmount, false /* remap */); in appear() 72 transformationAmount = Interpolators.LINEAR_OUT_SLOW_IN.getInterpolation( in appear() 73 transformationAmount); in appear() 74 mTransformedView.setScaleX(transformationAmount); in appear() 75 mTransformedView.setScaleY(transformationAmount); in appear() 77 super.appear(transformationAmount, otherView); in appear() 82 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 106 transformGroups(ownGroup, matchingGroup, transformationAmount, to); in transformViewInternal() 121 float groupTransformationAmount = transformationAmount; in transformViewInternal() 123 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 | HybridNotificationView.java | 78 float transformationAmount) { in onFinishInflate() 82 CrossFadeHelper.fadeOut(mTextView, transformationAmount); in onFinishInflate() 84 ownState.transformViewVerticalTo(otherState, transformationAmount); in onFinishInflate() 92 TransformableView notification, float transformationAmount) { in onFinishInflate() 96 CrossFadeHelper.fadeIn(mTextView, transformationAmount); in onFinishInflate() 98 ownState.transformViewVerticalFrom(otherState, transformationAmount); in onFinishInflate() 136 public void transformTo(TransformableView notification, float transformationAmount) { in transformTo() argument 137 mTransformationHelper.transformTo(notification, transformationAmount); in transformTo() 146 public void transformFrom(TransformableView notification, float transformationAmount) { in transformFrom() argument 147 mTransformationHelper.transformFrom(notification, transformationAmount); in transformFrom()
|
D | CustomInterpolatorTransformation.java | 44 float transformationAmount) { in transformTo() argument 53 CrossFadeHelper.fadeOut(view, transformationAmount); in transformTo() 54 ownState.transformViewFullyTo(otherState, this, transformationAmount); in transformTo() 65 TransformableView notification, float transformationAmount) { in transformFrom() argument 74 CrossFadeHelper.fadeIn(view, transformationAmount); in transformFrom() 75 ownState.transformViewFullyFrom(otherState, this, transformationAmount); in transformFrom()
|
D | MessagingImageTransformState.java | 71 float transformationAmount) { in transformViewFrom() argument 73 transformationAmount); in transformViewFrom() 75 transformationAmount); in transformViewFrom() 79 if (transformationAmount == 0.0f) { in transformViewFrom()
|
D | NotificationViewWrapper.java | 118 public void transformTo(TransformableView notification, float transformationAmount) { in transformTo() argument 119 CrossFadeHelper.fadeOut(mView, transformationAmount); in transformTo() 129 public void transformFrom(TransformableView notification, float transformationAmount) { in transformFrom() argument 130 CrossFadeHelper.fadeIn(mView, transformationAmount); in transformFrom()
|
D | ActionListTransformState.java | 47 public void transformViewFullyFrom(TransformState otherState, float transformationAmount) { in transformViewFullyFrom() argument 52 public void transformViewFullyTo(TransformState otherState, float transformationAmount) { in transformViewFullyTo() argument
|
D | NotificationTemplateViewWrapper.java | 71 TransformableView notification, final float transformationAmount) { in NotificationTemplateViewWrapper() 78 CrossFadeHelper.fadeOut(text, transformationAmount); in NotificationTemplateViewWrapper() 81 transformationAmount); in NotificationTemplateViewWrapper() 97 TransformableView notification, float transformationAmount) { in NotificationTemplateViewWrapper() 104 CrossFadeHelper.fadeIn(text, transformationAmount); in NotificationTemplateViewWrapper() 107 transformationAmount); in NotificationTemplateViewWrapper()
|
D | NotificationHeaderViewWrapper.java | 220 public void transformTo(TransformableView notification, float transformationAmount) { in transformTo() argument 221 mTransformationHelper.transformTo(notification, transformationAmount); in transformTo() 230 public void transformFrom(TransformableView notification, float transformationAmount) { in transformFrom() argument 231 mTransformationHelper.transformFrom(notification, transformationAmount); in transformFrom()
|
/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
|
D | NotificationContentView.java | 677 float transformationAmount = calculateTransformationAmount(); in updateContentTransformation() local 678 shownView.transformFrom(hiddenView, transformationAmount); in updateContentTransformation() 679 hiddenView.transformTo(shownView, transformationAmount); in updateContentTransformation() 680 updateBackgroundTransformation(transformationAmount); in updateContentTransformation() 687 private void updateBackgroundTransformation(float transformationAmount) { in updateBackgroundTransformation() argument 698 transformationAmount); in updateBackgroundTransformation() 700 mContainingNotification.updateBackgroundAlpha(transformationAmount); in updateBackgroundTransformation()
|
D | ActivatableNotificationView.java | 683 protected void updateBackgroundAlpha(float transformationAmount) { in updateBackgroundAlpha() argument 684 mBgAlpha = isChildInGroup() && mDimmed ? transformationAmount : 1f; in updateBackgroundAlpha()
|