HomeSort by relevance Sort by last modified time
    Searched defs:changeBounds (Results 1 - 9 of 9) sorted by null

  /frameworks/support/transition/src/androidTest/java/androidx/transition/
ChangeBoundsTest.java 37 final ChangeBounds changeBounds = new ChangeBounds();
38 changeBounds.setDuration(400);
39 changeBounds.setInterpolator(new LinearInterpolator());
40 return changeBounds;
45 ChangeBounds changeBounds = (ChangeBounds) mTransition;
46 assertThat(changeBounds.getResizeClip(), is(false))
    [all...]
TransitionInflaterTest.java 87 assertTrue(transition instanceof ChangeBounds);
88 ChangeBounds changeBounds = (ChangeBounds) transition;
89 assertTrue(changeBounds.getResizeClip());
132 assertTrue(set.getTransitionAt(0) instanceof ChangeBounds);
233 public static class InflationChangeBounds extends ChangeBounds {
  /cts/tests/tests/transition/src/android/transition/cts/
TransitionSetTest.java 29 import android.transition.ChangeBounds;
47 ChangeBounds changeBounds = new ChangeBounds();
50 changeBounds.addListener(changeBoundsListener);
52 transitionSet.addTransition(changeBounds);
73 ChangeBounds changeBounds = new ChangeBounds();
76 changeBounds.addListener(changeBoundsListener)
    [all...]
TransitionInflaterTest.java 31 import android.transition.ChangeBounds;
111 assertTrue(transition instanceof ChangeBounds);
121 assertTrue(transition instanceof ChangeBounds);
122 ChangeBounds changeBounds = (ChangeBounds) transition;
123 assertTrue(changeBounds.getResizeClip());
166 assertTrue(set.getTransitionAt(0) instanceof ChangeBounds);
266 public static class InflationChangeBounds extends ChangeBounds {
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
ClippingText.java 20 import android.transition.ChangeBounds;
52 ChangeBounds changeBounds = new ChangeBounds();
53 changeBounds.setResizeClip(true);
54 mChanger.addTransition(changeBounds).addTransition(new ChangeText());
CrossfadeMultiple.java 20 import android.transition.ChangeBounds;
64 mCrossfadeGroup.addTransition(mCrossfade).addTransition(new ChangeBounds());
71 ChangeBounds changeBounds = new ChangeBounds();
72 changeBounds.setStartDelay(150);
73 changeBounds.setDuration(0);
74 mInOutGroup.addTransition(inOut).addTransition(changeBounds);
79 mTextChangeGroup1.addTransition(changeTextInOut).addTransition(new ChangeBounds());
85 mTextChangeGroup2.addTransition(changeTextOut).addTransition(new ChangeBounds());
    [all...]
  /frameworks/support/leanback/src/main/java/androidx/leanback/transition/
TransitionHelper.java 154 CustomChangeBounds changeBounds = new CustomChangeBounds();
155 changeBounds.setReparent(reparent);
156 return changeBounds;
168 public static void setChangeBoundsStartDelay(Object changeBounds, View view, int startDelay) {
170 ((CustomChangeBounds) changeBounds).setStartDelay(view, startDelay);
174 public static void setChangeBoundsStartDelay(Object changeBounds, int viewId, int startDelay) {
176 ((CustomChangeBounds) changeBounds).setStartDelay(viewId, startDelay);
180 public static void setChangeBoundsStartDelay(Object changeBounds, String className,
183 ((CustomChangeBounds) changeBounds).setStartDelay(className, startDelay);
187 public static void setChangeBoundsDefaultStartDelay(Object changeBounds, int startDelay)
    [all...]
  /frameworks/support/leanback/src/main/java/androidx/leanback/app/
GuidedStepFragment.java     [all...]
GuidedStepSupportFragment.java     [all...]

Completed in 183 milliseconds