scale ObjectAnimator - Android android.animation

Android examples for android.animation:ObjectAnimator

Description

scale ObjectAnimator

Demo Code


//package com.java2s;
import android.animation.ObjectAnimator;

public class Main {
    private static long duration = 1500;

    public static void scale(Object v, int scale) {
        ObjectAnimator.ofInt(v, "width", scale).setDuration(duration)
                .start();/*from   w w w.  j  a  v a2  s.c  o m*/
    }
}

Related Tutorials