Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.graphics.drawable.AnimationDrawable;
import android.view.View;
import android.view.animation.Animation;

public class Main {
    private Animation animation;

    public void startAnimation(View view) {
        view.startAnimation(animation);
    }

    public static void startAnimation(int resId, View view) {
        view.setBackgroundResource(resId);
        ((AnimationDrawable) view.getBackground()).start();
    }
}