blob: 97728478f1897b7846981f02528534f2ef183d8e [file] [log] [blame]
Alexandre Lision8ad39592013-11-21 13:23:58 -05001package org.sflphone.utils;
2
3import android.animation.ObjectAnimator;
4import android.view.View;
5
6public class AnimationManager {
7
8 public static ObjectAnimator slideOutDownAnimator(View toAnim, float height) {
9// ObjectAnimator outAnim = ObjectAnimator.ofFloat(toAnim, "y", 0, height);
10 ObjectAnimator outAnim = new ObjectAnimator();
11 outAnim.setDuration(500);
12 outAnim.setPropertyName("y");
13 outAnim.setFloatValues(0, height);
14 return null;
15 }
16
17}