Android examples for android.animation:ObjectAnimator
Create ObjectAnimator alpha Appear
//package com.java2s; import android.animation.ObjectAnimator; import android.view.View; public class Main { public static ObjectAnimator alphaAppear(View v) { return ObjectAnimator.ofFloat(v, "alpha", 0, 1); }//from ww w . j a v a2s . co m }