Java tutorial
//package com.java2s; //License from project: Open Source License import android.animation.Animator; import android.annotation.SuppressLint; import android.os.Build; public class Main { @SuppressLint("NewApi") public static void pauseOrStopAnimator(Animator animator) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { animator.pause(); } else { animator.cancel(); } } }