Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import android.animation.Animator;
import android.animation.ObjectAnimator;

import android.view.View;

import android.view.animation.LinearInterpolator;

public class Main {
    public static Animator createFadeOutAnimator(View view) {
        ObjectAnimator anim = ObjectAnimator.ofFloat(view, "alpha", 1f, 0f);
        anim.setInterpolator(new LinearInterpolator());
        anim.setDuration(250);

        return anim;
    }
}