HomeSort by relevance Sort by last modified time
    Searched full:startvalues (Results 1 - 11 of 11) sorted by null

  /frameworks/base/core/java/android/transition/
Slide.java 43 TransitionValues startValues, int startVisibility,
55 TransitionValues startValues, int startVisibility,
57 View startView = (startValues != null) ? startValues.view : null;
Visibility.java 98 private VisibilityInfo getVisibilityChangeInfo(TransitionValues startValues,
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,
155 VisibilityInfo visInfo = getVisibilityChangeInfo(startValues, endValues);
161 View startView = startValues != null ? startValues.view : null
    [all...]
Rotate.java 45 public Animator createAnimator(ViewGroup sceneRoot, TransitionValues startValues,
47 if (startValues == null || endValues == null) {
51 float startRotation = (Float) startValues.values.get(PROPNAME_ROTATION);
Recolor.java 63 public Animator createAnimator(ViewGroup sceneRoot, TransitionValues startValues,
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);
Fade.java 137 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);
ChangeBounds.java 105 public Animator createAnimator(final ViewGroup sceneRoot, TransitionValues startValues,
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);
ChangeText.java 155 public Animator createAnimator(ViewGroup sceneRoot, TransitionValues startValues,
157 if (startValues == null || endValues == null ||
158 !(startValues.view instanceof TextView) || !(endValues.view instanceof TextView)) {
162 Map<String, Object> startVals = startValues.values;
Crossfade.java 167 public Animator createAnimator(ViewGroup sceneRoot, TransitionValues startValues,
169 if (startValues == null || endValues == null) {
174 Map<String, Object> startVals = startValues.values;
220 startValues + ", " + endValues);
Transition.java 267 * 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,
327 protected void createAnimators(ViewGroup sceneRoot, TransitionValuesMaps startValues,
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.itemIdValues.size()
    [all...]
TransitionSet.java 256 protected void createAnimators(ViewGroup sceneRoot, TransitionValuesMaps startValues,
259 childTransition.createAnimators(sceneRoot, startValues, endValues);
  /prebuilts/sdk/19/
android.jar 

Completed in 156 milliseconds