View animate to scale Back Animation - Android Animation

Android examples for Animation:Scale Animation

Description

View animate to scale Back Animation

Demo Code


//package com.java2s;
import android.view.View;

public class Main {
    public static void scaleBackAnimation(View view) {
        view.animate().scaleX(1.0f).scaleY(1.0f).start();
    }//  ww w. j a v  a 2s.co  m
}

Related Tutorials