Searched refs:changeBounds (Results 1 – 8 of 8) sorted by relevance
/frameworks/support/v17/leanback/src/android/support/v17/leanback/transition/ |
D | TransitionHelper.java | 93 public void setChangeBoundsStartDelay(Object changeBounds, View view, int startDelay); in setChangeBoundsStartDelay() argument 95 public void setChangeBoundsStartDelay(Object changeBounds, int viewId, int startDelay); in setChangeBoundsStartDelay() argument 97 public void setChangeBoundsStartDelay(Object changeBounds, String className, in setChangeBoundsStartDelay() argument 100 public void setChangeBoundsDefaultStartDelay(Object changeBounds, int startDelay); in setChangeBoundsDefaultStartDelay() argument 215 public void setChangeBoundsStartDelay(Object changeBounds, View view, int startDelay) { in setChangeBoundsStartDelay() argument 219 public void setChangeBoundsStartDelay(Object changeBounds, int viewId, int startDelay) { in setChangeBoundsStartDelay() argument 223 public void setChangeBoundsStartDelay(Object changeBounds, String className, in setChangeBoundsStartDelay() argument 228 public void setChangeBoundsDefaultStartDelay(Object changeBounds, int startDelay) { in setChangeBoundsDefaultStartDelay() argument 387 public void setChangeBoundsStartDelay(Object changeBounds, View view, int startDelay) { in setChangeBoundsStartDelay() argument 388 TransitionHelperKitkat.setChangeBoundsStartDelay(changeBounds, view, startDelay); in setChangeBoundsStartDelay() [all …]
|
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/ |
D | TransitionHelperKitkat.java | 135 CustomChangeBounds changeBounds = new CustomChangeBounds(); in createChangeBounds() local 136 changeBounds.setReparent(reparent); in createChangeBounds() 137 return changeBounds; in createChangeBounds() 140 static void setChangeBoundsStartDelay(Object changeBounds, int viewId, int startDelay) { in setChangeBoundsStartDelay() argument 141 ((CustomChangeBounds) changeBounds).setStartDelay(viewId, startDelay); in setChangeBoundsStartDelay() 144 static void setChangeBoundsStartDelay(Object changeBounds, View view, int startDelay) { in setChangeBoundsStartDelay() argument 145 ((CustomChangeBounds) changeBounds).setStartDelay(view, startDelay); in setChangeBoundsStartDelay() 148 static void setChangeBoundsStartDelay(Object changeBounds, String className, int startDelay) { in setChangeBoundsStartDelay() argument 149 ((CustomChangeBounds) changeBounds).setStartDelay(className, startDelay); in setChangeBoundsStartDelay() 152 static void setChangeBoundsDefaultStartDelay(Object changeBounds, int startDelay) { in setChangeBoundsDefaultStartDelay() argument [all …]
|
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/ |
D | ClippingText.java | 52 ChangeBounds changeBounds = new ChangeBounds(); in onCreate() local 53 changeBounds.setResizeClip(true); in onCreate() 54 mChanger.addTransition(changeBounds).addTransition(new ChangeText()); in onCreate()
|
D | CrossfadeMultiple.java | 71 ChangeBounds changeBounds = new ChangeBounds(); in onCreate() local 72 changeBounds.setStartDelay(150); in onCreate() 73 changeBounds.setDuration(0); in onCreate() 74 mInOutGroup.addTransition(inOut).addTransition(changeBounds); in onCreate()
|
/frameworks/base/core/java/android/view/animation/ |
D | AnimationSet.java | 226 boolean changeBounds = (mFlags & PROPERTY_CHANGE_BOUNDS_MASK) == 0; in addAnimation() 229 if (changeBounds && a.willChangeBounds()) { in addAnimation()
|
/frameworks/base/docs/html/training/transitions/ |
D | transitions.jd | 66 <td><changeBounds/></td> 193 <changeBounds />
|
/frameworks/base/docs/html/samples/new/ |
D | index.jd | 302 of <code>moveImage</code> and <code>changeBounds</code> to nicely transition
|
/frameworks/base/docs/html/training/material/ |
D | animations.jd | 181 <li><em>changeBounds</em> - Animates the changes in layout bounds of target views.</li>
|