Home
last modified time | relevance | path

Searched refs:mTransformedView (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DTransformState.java76 protected View mTransformedView; field in TransformState
86 mTransformedView = view; in initFrom()
97 mTransformedView.animate().cancel(); in transformViewFrom()
101 CrossFadeHelper.fadeIn(mTransformedView, transformationAmount, true /* remap */); in transformViewFrom()
107 if (mTransformedView.getVisibility() == View.INVISIBLE in ensureVisible()
108 || mTransformedView.getAlpha() != 1.0f) { in ensureVisible()
110 mTransformedView.setAlpha(1.0f); in ensureVisible()
111 mTransformedView.setVisibility(View.VISIBLE); in ensureVisible()
138 final View transformedView = mTransformedView; in transformViewFrom()
260 return mTransformedView.getWidth(); in getContentWidth()
[all …]
DImageTransformState.java67 mTransformedView.setPivotY(0); in appear()
68 mTransformedView.setPivotX(mTransformedView.getWidth() / 2); in appear()
72 CrossFadeHelper.fadeIn(mTransformedView, transformationAmount, false /* remap */); in appear()
75 mTransformedView.setScaleX(transformationAmount); in appear()
76 mTransformedView.setScaleY(transformationAmount); in appear()
86 mTransformedView.setPivotY(0); in disappear()
87 mTransformedView.setPivotX(mTransformedView.getWidth() / 2); in disappear()
90 CrossFadeHelper.fadeOut(mTransformedView, 1.0f - transformationAmount, in disappear()
94 mTransformedView.setScaleX(transformationAmount); in disappear()
95 mTransformedView.setScaleY(transformationAmount); in disappear()
DMessagingImageTransformState.java96 Object tag = mTransformedView.getTag(START_ACTUAL_WIDTH); in getStartActualWidth()
101 mTransformedView.setTag(START_ACTUAL_WIDTH, actualWidth); in setStartActualWidth()
105 Object tag = mTransformedView.getTag(START_ACTUAL_HEIGHT); in getStartActualHeight()
110 mTransformedView.setTag(START_ACTUAL_HEIGHT, actualWidth); in setStartActualHeight()
DMessagingLayoutTransformState.java61 if (mTransformedView instanceof MessagingLinearLayout) { in initFrom()
62 mMessageContainer = (MessagingLinearLayout) mTransformedView; in initFrom()