Searched refs:startValues (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/core/java/android/transition/
H A DVisibility.java98 private VisibilityInfo getVisibilityChangeInfo(TransitionValues startValues, argument
103 if (startValues != null) {
104 visInfo.startVisibility = (Integer) startValues.values.get(PROPNAME_VISIBILITY);
105 visInfo.startParent = (ViewGroup) startValues.values.get(PROPNAME_PARENT);
117 if (startValues != null && endValues != null) {
142 if (startValues == null) {
153 public Animator createAnimator(ViewGroup sceneRoot, TransitionValues startValues, argument
155 VisibilityInfo visInfo = getVisibilityChangeInfo(startValues, endValues);
161 View startView = startValues != null ? startValues
196 onAppear(ViewGroup sceneRoot, TransitionValues startValues, int startVisibility, TransitionValues endValues, int endVisibility) argument
218 onDisappear(ViewGroup sceneRoot, TransitionValues startValues, int startVisibility, TransitionValues endValues, int endVisibility) argument
[all...]
H A DSlide.java43 TransitionValues startValues, int startVisibility,
55 TransitionValues startValues, int startVisibility,
57 View startView = (startValues != null) ? startValues.view : null;
42 onAppear(ViewGroup sceneRoot, TransitionValues startValues, int startVisibility, TransitionValues endValues, int endVisibility) argument
54 onDisappear(ViewGroup sceneRoot, TransitionValues startValues, int startVisibility, TransitionValues endValues, int endVisibility) argument
H A DRecolor.java63 public Animator createAnimator(ViewGroup sceneRoot, TransitionValues startValues, argument
65 if (startValues == null || endValues == null) {
69 Drawable startBackground = (Drawable) startValues.values.get(PROPNAME_BACKGROUND);
84 int start = (Integer) startValues.values.get(PROPNAME_TEXT_COLOR);
H A DRotate.java45 public Animator createAnimator(ViewGroup sceneRoot, TransitionValues startValues, argument
47 if (startValues == null || endValues == null) {
51 float startRotation = (Float) startValues.values.get(PROPNAME_ROTATION);
H A DFade.java137 TransitionValues startValues, int startVisibility,
144 View startView = (startValues != null) ? startValues.view : null;
183 TransitionValues startValues, int startVisibility,
189 View startView = (startValues != null) ? startValues.view : null;
240 int screenX = (Integer) startValues.values.get(PROPNAME_SCREEN_X);
241 int screenY = (Integer) startValues.values.get(PROPNAME_SCREEN_Y);
136 onAppear(ViewGroup sceneRoot, TransitionValues startValues, int startVisibility, TransitionValues endValues, int endVisibility) argument
182 onDisappear(ViewGroup sceneRoot, TransitionValues startValues, int startVisibility, TransitionValues endValues, int endVisibility) argument
H A DChangeBounds.java105 public Animator createAnimator(final ViewGroup sceneRoot, TransitionValues startValues, argument
107 if (startValues == null || endValues == null) {
110 Map<String, Object> startParentVals = startValues.values;
125 Rect startBounds = (Rect) startValues.values.get(PROPNAME_BOUNDS);
276 int startX = (Integer) startValues.values.get(PROPNAME_WINDOW_X);
277 int startY = (Integer) startValues.values.get(PROPNAME_WINDOW_Y);
H A DChangeText.java155 public Animator createAnimator(ViewGroup sceneRoot, TransitionValues startValues, argument
157 if (startValues == null || endValues == null ||
158 !(startValues.view instanceof TextView) || !(endValues.view instanceof TextView)) {
162 Map<String, Object> startVals = startValues.values;
H A DCrossfade.java167 public Animator createAnimator(ViewGroup sceneRoot, TransitionValues startValues, argument
169 if (startValues == null || endValues == null) {
174 Map<String, Object> startVals = startValues.values;
220 startValues + ", " + endValues);
H A DTransition.java267 * given the information in the startValues and endValues structures captured
305 * @param startValues The values for a specific target in the start scene.
311 public Animator createAnimator(ViewGroup sceneRoot, TransitionValues startValues, argument
327 protected void createAnimators(ViewGroup sceneRoot, TransitionValuesMaps startValues, argument
350 for (View view : startValues.viewValues.keySet()) {
359 start = startValues.viewValues.get(view) != null ?
360 startValues.viewValues.get(view) : startValues.idValues.get(id);
386 start = startValues.itemIdValues.get(itemId);
394 int startItemIdCopySize = startValues
[all...]
H A DTransitionSet.java256 protected void createAnimators(ViewGroup sceneRoot, TransitionValuesMaps startValues, argument
259 childTransition.createAnimators(sceneRoot, startValues, endValues);

Completed in 165 milliseconds