Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.content.Context;

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

public class Main {
    public static void performScaleWithCustomTime(int i, View view, Context context) {
        Animation animation = AnimationUtils.loadAnimation(context, 0x7f04000c);
        animation.setDuration(i);
        view.startAnimation(animation);
    }
}