Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.view.View;
import android.view.animation.Animation;

import android.view.animation.ScaleAnimation;

public class Main {
    public static void gridSelectionAnimation(View viewToAnimate) {
        ScaleAnimation animation = new ScaleAnimation(1.0f, 0.95f, 1.0f, 0.95f, Animation.RELATIVE_TO_SELF, 0.5f,
                Animation.RELATIVE_TO_SELF, 0.5f);
        animation.setDuration(50);
        viewToAnimate.startAnimation(animation);
    }
}