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;

public class Main {
    public static Animator createShakeAnimation(View target) {
        return ObjectAnimator.ofFloat(target, View.TRANSLATION_X, 0, 25, -25, 25, -25, 15, -15, 6, -6, 0);
    }
}