Searched defs:PROPNAME_VISIBILITY (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/transition/
H A DVisibilityPropagation.java29 private static final String PROPNAME_VISIBILITY = "android:visibilityPropagation:visibility"; field in class:VisibilityPropagation
38 PROPNAME_VISIBILITY,
45 Integer visibility = (Integer) values.values.get(Visibility.PROPNAME_VISIBILITY);
49 values.values.put(PROPNAME_VISIBILITY, visibility);
75 Integer visibility = (Integer) values.values.get(PROPNAME_VISIBILITY);
H A DVisibility.java49 static final String PROPNAME_VISIBILITY = "android:visibility:visibility"; field in class:Visibility
73 PROPNAME_VISIBILITY,
144 transitionValues.values.put(PROPNAME_VISIBILITY, visibility);
180 int visibility = (Integer) values.values.get(PROPNAME_VISIBILITY);
191 if (startValues != null && startValues.values.containsKey(PROPNAME_VISIBILITY)) {
192 visInfo.startVisibility = (Integer) startValues.values.get(PROPNAME_VISIBILITY);
198 if (endValues != null && endValues.values.containsKey(PROPNAME_VISIBILITY)) {
199 visInfo.endVisibility = (Integer) endValues.values.get(PROPNAME_VISIBILITY);
459 newValues.values.containsKey(PROPNAME_VISIBILITY) !=
460 startValues.values.containsKey(PROPNAME_VISIBILITY)) {
[all...]

Completed in 81 milliseconds