stop View Animation - Android User Interface

Android examples for User Interface:View Animation

Description

stop View Animation

Demo Code


//package com.java2s;
import android.view.View;

public class Main {

    public static void stopAnimation(View view) {
        view.setAnimation(null);/*  ww  w .jav  a 2 s .c o  m*/
    }
}

Related Tutorials