Searched refs:resizeClip (Results 1 - 6 of 6) sorted by relevance

/frameworks/support/transition/base/android/support/transition/
H A DChangeBoundsInterface.java24 void setResizeClip(boolean resizeClip); argument
/frameworks/support/transition/ics/android/support/transition/
H A DChangeBoundsIcs.java26 public void setResizeClip(boolean resizeClip) { argument
27 ((ChangeBoundsPort) mTransition).setResizeClip(resizeClip);
H A DChangeBoundsPort.java72 public void setResizeClip(boolean resizeClip) { argument
73 mResizeClip = resizeClip;
/frameworks/support/transition/kitkat/android/support/transition/
H A DChangeBoundsKitKat.java26 public void setResizeClip(boolean resizeClip) { argument
27 ((android.transition.ChangeBounds) mTransition).setResizeClip(resizeClip);
/frameworks/support/transition/src/android/support/transition/
H A DChangeBounds.java60 * When <code>resizeClip</code> is true, ChangeBounds resizes the view using the clipBounds
62 * <code>resizeClip</code> is false, ChangeBounds resizes the View by changing its dimensions.
64 * <p>When resizeClip is set to true, the clip bounds is modified by ChangeBounds. Therefore,
68 * @param resizeClip Used to indicate whether the view bounds should be modified or the
72 public void setResizeClip(boolean resizeClip) { argument
73 ((ChangeBoundsInterface) mImpl).setResizeClip(resizeClip);
/frameworks/base/core/java/android/transition/
H A DChangeBounds.java176 boolean resizeClip = a.getBoolean(R.styleable.ChangeBounds_resizeClip, false);
178 setResizeClip(resizeClip);
187 * When <code>resizeClip</code> is true, ChangeBounds resizes the view using the clipBounds
189 * <code>resizeClip</code> is false, ChangeBounds resizes the View by changing its dimensions.
191 * <p>When resizeClip is set to true, the clip bounds is modified by ChangeBounds. Therefore,
195 * @param resizeClip Used to indicate whether the view bounds should be modified or the
200 public void setResizeClip(boolean resizeClip) { argument
201 mResizeClip = resizeClip;

Completed in 2031 milliseconds