Home | History | Annotate | Download | only in transition

Lines Matching defs:Fade

38  * <p>The ability of this transition to fade out a particular view, and the
54 * the starting scene view in order to fade it out.</p>
56 * <p>A Fade transition can be described in a resource file by using the
57 * tag <code>fade</code>, along with the standard
58 * attributes of {@link android.R.styleable#Fade} and
62 public class Fade extends Visibility {
66 private static final String LOG_TAG = "Fade";
69 * Fading mode used in {@link #Fade(int)} to make the transition
71 * {@link #OUT} to fade both in and out. Equivalent to
77 * Fading mode used in {@link #Fade(int)} to make the transition
79 * {@link #IN} to fade both in and out. Equivalent to
85 * Constructs a Fade transition that will fade targets in and out.
87 public Fade() {
91 * Constructs a Fade transition that will fade targets in
97 public Fade(int fadingMode) {
101 public Fade(Context context, AttributeSet attrs) {
103 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.Fade);
132 Log.d(LOG_TAG, "Fade.onAppear: startView, startVis, endView, endVis = " +