Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import android.animation.Animator;

import android.animation.ObjectAnimator;

import android.view.View;

import android.view.animation.AccelerateInterpolator;

public class Main {
    public static Animator animFadeIn(View view) {
        ObjectAnimator objectanimator = ObjectAnimator.ofFloat(view, "alpha", new float[] { 0.3F, 1.0F });
        objectanimator.setInterpolator(new AccelerateInterpolator());
        return objectanimator;
    }
}