Searched refs:PROPNAME_VISIBILITY (Results 1 - 4 of 4) 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
76 PROPNAME_VISIBILITY,
147 transitionValues.values.put(PROPNAME_VISIBILITY, visibility);
183 int visibility = (Integer) values.values.get(PROPNAME_VISIBILITY);
194 if (startValues != null && startValues.values.containsKey(PROPNAME_VISIBILITY)) {
195 visInfo.startVisibility = (Integer) startValues.values.get(PROPNAME_VISIBILITY);
201 if (endValues != null && endValues.values.containsKey(PROPNAME_VISIBILITY)) {
202 visInfo.endVisibility = (Integer) endValues.values.get(PROPNAME_VISIBILITY);
466 newValues.values.containsKey(PROPNAME_VISIBILITY) !=
467 startValues.values.containsKey(PROPNAME_VISIBILITY)) {
[all...]
/frameworks/support/transition/src/main/java/androidx/transition/
H A DVisibilityPropagation.java30 private static final String PROPNAME_VISIBILITY = "android:visibilityPropagation:visibility"; field in class:VisibilityPropagation
39 PROPNAME_VISIBILITY,
46 Integer visibility = (Integer) values.values.get(Visibility.PROPNAME_VISIBILITY);
50 values.values.put(PROPNAME_VISIBILITY, visibility);
76 Integer visibility = (Integer) values.values.get(PROPNAME_VISIBILITY);
H A DVisibility.java54 static final String PROPNAME_VISIBILITY = "android:visibility:visibility"; field in class:Visibility
80 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.mStartVisibility = (Integer) startValues.values.get(PROPNAME_VISIBILITY);
198 if (endValues != null && endValues.values.containsKey(PROPNAME_VISIBILITY)) {
199 visInfo.mEndVisibility = (Integer) endValues.values.get(PROPNAME_VISIBILITY);
463 && newValues.values.containsKey(PROPNAME_VISIBILITY)
464 != startValues.values.containsKey(PROPNAME_VISIBILITY)) {
[all...]

Completed in 95 milliseconds