Home | History | Annotate | Download | only in transition

Lines Matching defs:Visibility

24  * This transition tracks changes to the visibility of target views in the
25 * start and end scenes. Visibility is determined not just by the
28 * utility for subclasses such as {@link Fade}, which use this visibility
29 * information to determine the specific animations to run when visibility
34 public abstract class Visibility extends Transition {
36 private static final String PROPNAME_VISIBILITY = "android:visibility:visibility";
37 private static final String PROPNAME_PARENT = "android:visibility:parent";
58 int visibility = transitionValues.view.getVisibility();
59 transitionValues.values.put(PROPNAME_VISIBILITY, visibility);
80 * to know whether the object is visible in the same way that Visibility
84 * which visibility is determined.
92 int visibility = (Integer) values.values.get(PROPNAME_VISIBILITY);
95 return visibility == View.VISIBLE && parent != null;
184 * The method should only be called by the Visibility class; it is
189 * @param startVisibility The target visibility in the start scene
191 * @param endVisibility The target visibility in the end scene
205 * The method should only be called by the Visibility class; it is
211 * @param startVisibility The target visibility in the start scene
213 * @param endVisibility The target visibility in the end scene