Home | History | Annotate | Download | only in view

Lines Matching defs:ViewPropertyAnimator

33  * more convenient syntax to animate a specific property, then ViewPropertyAnimator might be
45 * to the appropriate ViewPropertyAnimator object for that View.</p>
48 public class ViewPropertyAnimator {
241 * get a ViewPropertyAnimator by calling View.animate().
243 * @param view The View associated with this ViewPropertyAnimator
245 ViewPropertyAnimator(View view) {
258 public ViewPropertyAnimator setDuration(long duration) {
315 public ViewPropertyAnimator setStartDelay(long startDelay) {
333 public ViewPropertyAnimator setInterpolator(TimeInterpolator interpolator) {
367 public ViewPropertyAnimator setListener(Animator.AnimatorListener listener) {
376 * by ViewPropertyAnimator). So the animator cannot give information on the current
377 * values of the properties being animated by this ViewPropertyAnimator, although
386 public ViewPropertyAnimator setUpdateListener(ValueAnimator.AnimatorUpdateListener listener) {
427 public ViewPropertyAnimator x(float value) {
440 public ViewPropertyAnimator xBy(float value) {
453 public ViewPropertyAnimator y(float value) {
466 public ViewPropertyAnimator yBy(float value) {
479 public ViewPropertyAnimator rotation(float value) {
492 public ViewPropertyAnimator rotationBy(float value) {
505 public ViewPropertyAnimator rotationX(float value) {
518 public ViewPropertyAnimator rotationXBy(float value) {
531 public ViewPropertyAnimator rotationY(float value) {
544 public ViewPropertyAnimator rotationYBy(float value) {
557 public ViewPropertyAnimator translationX(float value) {
570 public ViewPropertyAnimator translationXBy(float value) {
583 public ViewPropertyAnimator translationY(float value) {
596 public ViewPropertyAnimator translationYBy(float value) {
609 public ViewPropertyAnimator scaleX(float value) {
622 public ViewPropertyAnimator scaleXBy(float value) {
635 public ViewPropertyAnimator scaleY(float value) {
648 public ViewPropertyAnimator scaleYBy(float value) {
661 public ViewPropertyAnimator alpha(float value) {
674 public ViewPropertyAnimator alphaBy(float value) {
680 * The View associated with this ViewPropertyAnimator will have its
689 * <p>This state is not persistent, either on the View or on this ViewPropertyAnimator: the
691 * method was called, and this setting on ViewPropertyAnimator is only valid for the next
700 public ViewPropertyAnimator withLayer() {
729 * {@link #setStartDelay(long) startDelay} set on this ViewPropertyAnimator, then the
732 * choreographing ViewPropertyAnimator animations with other animations or actions
738 public ViewPropertyAnimator withStartAction(Runnable runnable) {
748 * run if the animation ends normally; if the ViewPropertyAnimator is canceled during
751 * choreographing ViewPropertyAnimator animations with other animations or actions
767 public ViewPropertyAnimator withEndAction(Runnable runnable) {