/* * This file is part of Popcorn Time. * * Popcorn Time 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. * * Popcorn Time 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 Popcorn Time. If not, see <http://www.gnu.org/licenses/>. */ package pct.droid.base.utils; import android.view.View; import android.view.animation.Animation; import android.view.animation.AnimationUtils; import pct.droid.base.PopcornApplication; public class AnimUtils { public static void fadeIn(View v) { if (v.getVisibility() == View.VISIBLE) return; Animation fadeInAnim = AnimationUtils.loadAnimation(PopcornApplication.getAppContext(), android.R.anim.fade_in); v.setVisibility(View.VISIBLE); v.startAnimation(fadeInAnim); v.requestLayout(); // Force redraw } public static void fadeOut(View v) { if (v.getVisibility() == View.INVISIBLE) return; Animation fadeOutAnim = AnimationUtils.loadAnimation(PopcornApplication.getAppContext(), android.R.anim.fade_out); v.startAnimation(fadeOutAnim); v.setVisibility(View.INVISIBLE); v.requestLayout(); // Force redraw } }