Home | History | Annotate | Download | only in view

Lines Matching refs:ViewPropertyAnimator

34  * more convenient syntax to animate a specific property, then ViewPropertyAnimator might be
46 * to the appropriate ViewPropertyAnimator object for that View.</p>
49 public class ViewPropertyAnimator {
249 * get a ViewPropertyAnimator by calling View.animate().
251 * @param view The View associated with this ViewPropertyAnimator
253 ViewPropertyAnimator(View view) {
266 public ViewPropertyAnimator setDuration(long duration) {
323 public ViewPropertyAnimator setStartDelay(long startDelay) {
342 public ViewPropertyAnimator setInterpolator(TimeInterpolator interpolator) {
376 public ViewPropertyAnimator setListener(Animator.AnimatorListener listener) {
389 * by ViewPropertyAnimator). So the animator cannot give information on the current
390 * values of the properties being animated by this ViewPropertyAnimator, although
399 public ViewPropertyAnimator setUpdateListener(ValueAnimator.AnimatorUpdateListener listener) {
451 public ViewPropertyAnimator x(float value) {
464 public ViewPropertyAnimator xBy(float value) {
477 public ViewPropertyAnimator y(float value) {
490 public ViewPropertyAnimator yBy(float value) {
503 public ViewPropertyAnimator z(float value) {
516 public ViewPropertyAnimator zBy(float value) {
529 public ViewPropertyAnimator rotation(float value) {
542 public ViewPropertyAnimator rotationBy(float value) {
555 public ViewPropertyAnimator rotationX(float value) {
568 public ViewPropertyAnimator rotationXBy(float value) {
581 public ViewPropertyAnimator rotationY(float value) {
594 public ViewPropertyAnimator rotationYBy(float value) {
607 public ViewPropertyAnimator translationX(float value) {
620 public ViewPropertyAnimator translationXBy(float value) {
633 public ViewPropertyAnimator translationY(float value) {
646 public ViewPropertyAnimator translationYBy(float value) {
659 public ViewPropertyAnimator translationZ(float value) {
672 public ViewPropertyAnimator translationZBy(float value) {
684 public ViewPropertyAnimator scaleX(float value) {
697 public ViewPropertyAnimator scaleXBy(float value) {
710 public ViewPropertyAnimator scaleY(float value) {
723 public ViewPropertyAnimator scaleYBy(float value) {
736 public ViewPropertyAnimator alpha(float value) {
749 public ViewPropertyAnimator alphaBy(float value) {
755 * The View associated with this ViewPropertyAnimator will have its
764 * <p>This state is not persistent, either on the View or on this ViewPropertyAnimator: the
766 * method was called, and this setting on ViewPropertyAnimator is only valid for the next
775 public ViewPropertyAnimator withLayer() {
804 * {@link #setStartDelay(long) startDelay} set on this ViewPropertyAnimator, then the
807 * choreographing ViewPropertyAnimator animations with other animations or actions
813 public ViewPropertyAnimator withStartAction(Runnable runnable) {
823 * run if the animation ends normally; if the ViewPropertyAnimator is canceled during
826 * choreographing ViewPropertyAnimator animations with other animations or actions
842 public ViewPropertyAnimator withEndAction(Runnable runnable) {