Java tutorial
//package com.java2s; /* Copyright 2013 Christopher D. Canfield This file is part of Colonies. Colonies is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Colonies is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Colonies. If not, see <http://www.gnu.org/licenses/>. */ import android.graphics.drawable.AnimationDrawable; public class Main { /** * Gets the duration of the frames of animation in an AnimationDrawable, in milliseconds. * @param drawable * @return The duration of the frames in the AnimationDrawable, in milliseconds. */ public static long getAnimationDuration(AnimationDrawable drawable) { long duration = 0; for (int i = 0; i < drawable.getNumberOfFrames(); ++i) { duration += drawable.getDuration(i); } return duration; } }