HomeSort by relevance Sort by last modified time
    Searched refs:endValues (Results 1 - 25 of 69) sorted by null

1 2 3

  /frameworks/base/core/java/android/transition/
TransitionPropagation.java 39 * @param endValues The values for the target in the end scene.
46 TransitionValues startValues, TransitionValues endValues);
51 * or endValues structure in a later call to
ChangeClipBounds.java 80 TransitionValues endValues) {
81 if (startValues == null || endValues == null
83 || !endValues.values.containsKey(PROPNAME_CLIP)) {
87 Rect end = (Rect) endValues.values.get(PROPNAME_CLIP);
96 end = (Rect) endValues.values.get(PROPNAME_BOUNDS);
102 endValues.view.setClipBounds(start);
105 ObjectAnimator.ofObject(endValues.view, "clipBounds", evaluator, start, end);
107 final View endView = endValues.view;
Rotate.java 46 TransitionValues endValues) {
47 if (startValues == null || endValues == null) {
50 final View view = endValues.view;
52 float endRotation = (Float) endValues.values.get(PROPNAME_ROTATION);
ChangeScroll.java 68 TransitionValues endValues) {
69 if (startValues == null || endValues == null) {
72 final View view = endValues.view;
74 int endX = (Integer) endValues.values.get(PROPNAME_SCROLL_X);
76 int endY = (Integer) endValues.values.get(PROPNAME_SCROLL_Y);
Visibility.java 190 TransitionValues endValues) {
201 if (endValues != null && endValues.values.containsKey(PROPNAME_VISIBILITY)) {
202 visInfo.endVisibility = (Integer) endValues.values.get(PROPNAME_VISIBILITY);
203 visInfo.endParent = (ViewGroup) endValues.values.get(PROPNAME_PARENT);
208 if (startValues != null && endValues != null) {
235 } else if (endValues == null && visInfo.startVisibility == View.VISIBLE) {
244 TransitionValues endValues) {
245 VisibilityInfo visInfo = getVisibilityChangeInfo(startValues, endValues);
250 endValues, visInfo.endVisibility)
    [all...]
CircularPropagation.java 58 TransitionValues startValues, TransitionValues endValues) {
59 if (startValues == null && endValues == null) {
64 if (endValues == null || getViewVisibility(startValues) == View.VISIBLE) {
68 positionValues = endValues;
Recolor.java 71 TransitionValues endValues) {
72 if (startValues == null || endValues == null) {
75 final View view = endValues.view;
77 Drawable endBackground = (Drawable) endValues.values.get(PROPNAME_BACKGROUND);
92 int end = (Integer) endValues.values.get(PROPNAME_TEXT_COLOR);
  /frameworks/support/transition/src/main/java/androidx/transition/
TransitionPropagation.java 41 * @param endValues The values for the target in the end scene.
48 TransitionValues startValues, TransitionValues endValues);
53 * or endValues structure in a later call to
ChangeClipBounds.java 84 TransitionValues endValues) {
85 if (startValues == null || endValues == null
87 || !endValues.values.containsKey(PROPNAME_CLIP)) {
91 Rect end = (Rect) endValues.values.get(PROPNAME_CLIP);
100 end = (Rect) endValues.values.get(PROPNAME_BOUNDS);
106 ViewCompat.setClipBounds(endValues.view, start);
108 ObjectAnimator animator = ObjectAnimator.ofObject(endValues.view, ViewUtils.CLIP_BOUNDS,
111 final View endView = endValues.view;
ChangeScroll.java 74 @Nullable TransitionValues startValues, @Nullable TransitionValues endValues) {
75 if (startValues == null || endValues == null) {
78 final View view = endValues.view;
80 int endX = (Integer) endValues.values.get(PROPNAME_SCROLL_X);
82 int endY = (Integer) endValues.values.get(PROPNAME_SCROLL_Y);
Visibility.java 187 TransitionValues endValues) {
198 if (endValues != null && endValues.values.containsKey(PROPNAME_VISIBILITY)) {
199 visInfo.mEndVisibility = (Integer) endValues.values.get(PROPNAME_VISIBILITY);
200 visInfo.mEndParent = (ViewGroup) endValues.values.get(PROPNAME_PARENT);
205 if (startValues != null && endValues != null) {
232 } else if (endValues == null && visInfo.mStartVisibility == View.VISIBLE) {
242 @Nullable TransitionValues startValues, @Nullable TransitionValues endValues) {
243 VisibilityInfo visInfo = getVisibilityChangeInfo(startValues, endValues);
248 endValues, visInfo.mEndVisibility)
    [all...]
CircularPropagation.java 58 TransitionValues startValues, TransitionValues endValues) {
59 if (startValues == null && endValues == null) {
64 if (endValues == null || getViewVisibility(startValues) == View.VISIBLE) {
68 positionValues = endValues;
  /cts/tests/tests/transition/src/android/transition/cts/
TrackingVisibilityWithAnimator.java 33 TransitionValues endValues) {
34 super.onAppear(sceneRoot, view, startValues, endValues);
VisibilityTest.java 166 int startVisibility, TransitionValues endValues, int endVisibility) {
167 assertNotNull(endValues);
168 mExpectedView = endValues.view;
169 return super.onAppear(sceneRoot, startValues, startVisibility, endValues,
175 TransitionValues endValues) {
193 int startVisibility, TransitionValues endValues, int endVisibility) {
196 assertNull(endValues);
199 assertNotNull(endValues);
200 mExpectedView = endValues.view;
202 return super.onDisappear(sceneRoot, startValues, startVisibility, endValues,
    [all...]
  /frameworks/support/leanback/kitkat/androidx/leanback/transition/
CustomChangeBounds.java 62 TransitionValues endValues) {
63 Animator animator = super.createAnimator(sceneRoot, startValues, endValues);
64 if (animator != null && endValues != null && endValues.view != null) {
65 animator.setStartDelay(getDelay(endValues.view));
Scale.java 51 TransitionValues endValues) {
52 if (startValues == null || endValues == null) {
57 final float endScale = (Float) endValues.values.get(PROPNAME_SCALE);
  /developers/build/prebuilts/gradle/CustomTransition/Application/src/main/java/com/example/android/customtransition/
ChangeColor.java 69 TransitionValues startValues, TransitionValues endValues) {
71 if (null == startValues || null == endValues) {
76 final View view = endValues.view;
80 Drawable endBackground = (Drawable) endValues.values.get(PROPNAME_BACKGROUND);
  /developers/samples/android/ui/transition/CustomTransition/Application/src/main/java/com/example/android/customtransition/
ChangeColor.java 69 TransitionValues startValues, TransitionValues endValues) {
71 if (null == startValues || null == endValues) {
76 final View view = endValues.view;
80 Drawable endBackground = (Drawable) endValues.values.get(PROPNAME_BACKGROUND);
  /development/samples/browseable/CustomTransition/src/com.example.android.customtransition/
ChangeColor.java 69 TransitionValues startValues, TransitionValues endValues) {
71 if (null == startValues || null == endValues) {
76 final View view = endValues.view;
80 Drawable endBackground = (Drawable) endValues.values.get(PROPNAME_BACKGROUND);
  /frameworks/support/samples/SupportTransitionDemos/src/main/java/com/example/android/support/transition/widget/
ChangeColor.java 68 @Nullable TransitionValues endValues) {
70 if (null == startValues || null == endValues) {
75 final View view = endValues.view;
79 Drawable endBackground = (Drawable) endValues.values.get(PROPNAME_BACKGROUND);
  /cts/common/device-side/util/src/com/android/compatibility/common/util/transition/
TrackingTransition.java 61 TransitionValues endValues) {
65 if (endValues != null) {
66 targets.add(endValues.view);
TrackingVisibility.java 37 TransitionValues endValues) {
38 targets.add(endValues.view);
50 TransitionValues endValues) {
  /frameworks/support/fragment/src/androidTest/java/androidx/fragment/app/
TrackingTransition.java 61 TransitionValues endValues) {
65 if (endValues != null) {
66 targets.add(endValues.view);
TrackingVisibility.java 37 TransitionValues endValues) {
38 targets.add(endValues.view);
50 TransitionValues endValues) {
  /frameworks/support/transition/src/androidTest/java/androidx/transition/
VisibilityTest.java 77 final TransitionValues endValues = new TransitionValues();
78 endValues.view = mView;
79 visibility.captureEndValues(endValues);
83 .createAnimator(mRoot, startValues, endValues);
102 final TransitionValues endValues = new TransitionValues();
103 endValues.view = mView;
104 visibility.captureEndValues(endValues);
106 .createAnimator(mRoot, startValues, endValues);
148 int startVisibility, TransitionValues endValues, int endVisibility) {
158 int startVisibility, TransitionValues endValues, int endVisibility)
    [all...]

Completed in 411 milliseconds

1 2 3