Searched refs:transition (Results 201 - 225 of 270) sorted by relevance

1234567891011

/frameworks/base/core/java/android/app/
H A DActivityOptions.java42 import android.transition.Transition;
43 import android.transition.TransitionListenerAdapter;
44 import android.transition.TransitionManager;
161 * Descriptions of app transition animations to be played during the activity launch.
657 * Create an ActivityOptions to transition between Activities using cross-Activity scene
664 * enabled on the calling Activity to cause an exit transition. The same must be in
665 * the called Activity to get an entering transition.</p>
667 * @param sharedElement The View to transition to the started Activity.
672 * @see android.transition.Transition#setEpicenterCallback(
673 * android.transition
1601 onTransitionEnd(Transition transition) argument
[all...]
H A DSharedElementCallback.java28 import android.transition.TransitionUtils;
66 * This call can be used to adjust the transition start state by modifying the shared
68 * and the transition state capture.
97 * This call can be used to adjust the transition end state by modifying the shared
99 * and the transition state capture.
133 * will be handled by the exit transition.</p>
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardware.java43 * the {@link #GEOFENCE_UNCERTAIN} transition would be triggered. If the accuracy improves later,
44 * an appropriate transition would be triggered. The "reasonably confident" parameter
123 * The constant used to indicate that the transition requested for the geofence is invalid.
227 * called with the following parameters when a transition event occurs.
231 * <li> The transition associated with the geofence. One of
233 * <li> The timestamp when the geofence transition occured.
264 * transition.
507 public void onGeofenceTransition(int geofenceId, int transition, Location location, argument
511 c.onGeofenceTransition(geofenceId, transition, location, timestamp,
/frameworks/base/libs/input/
H A DPointerController.h100 virtual void fade(Transition transition);
101 virtual void unfade(Transition transition);
H A DPointerController.cpp234 void PointerController::fade(Transition transition) { argument
241 if (transition == TRANSITION_IMMEDIATE) {
251 void PointerController::unfade(Transition transition) { argument
258 if (transition == TRANSITION_IMMEDIATE) {
/frameworks/support/leanback/src/main/java/androidx/leanback/app/
H A DVerticalGridFragment.java26 import androidx.leanback.transition.TransitionHelper;
250 R.transition.lb_vertical_grid_entrance_transition);
H A DVerticalGridSupportFragment.java23 import androidx.leanback.transition.TransitionHelper;
245 R.transition.lb_vertical_grid_entrance_transition);
/frameworks/support/transition/src/androidTest/java/androidx/transition/
H A DExplodeTest.java17 package androidx.transition;
33 import androidx.transition.test.R;
H A DChangeImageTransformTest.java17 package androidx.transition;
40 import androidx.transition.test.R;
H A DSlideEdgeTest.java17 package androidx.transition;
34 import androidx.transition.test.R;
/frameworks/base/core/java/android/transition/
H A DChangeTransform.java16 package android.transition;
38 * scene change and animates those changes during the transition.
42 * transition.
122 * @return <code>true</code> when a changed parent should execute the transition
145 * transition inside the scene root's overlay or <code>false</code>
481 public void onTransitionEnd(Transition transition) { argument
482 transition.removeListener(this);
490 public void onTransitionPause(Transition transition) { argument
495 public void onTransitionResume(Transition transition) { argument
H A DTransition.java17 package android.transition;
56 * captured property values. A custom transition knows what property values
58 * changes to those values. For example, the {@link Fade} transition tracks
72 * <p>Transitions can be declared in XML resource files inside the <code>res/transition</code>
74 * subclasses along with attributes to define some of the attributes of that transition.
75 * For example, here is a minimal resource file that declares a {@link ChangeBounds} transition:
77 * {@sample development/samples/ApiDemos/res/transition/changebounds.xml ChangeBounds}
79 * <p>This TransitionSet contains {@link android.transition.Explode} for visibility,
80 * {@link android.transition.ChangeBounds}, {@link android.transition
2297 onTransitionStart(Transition transition) argument
2308 onTransitionEnd(Transition transition) argument
2320 onTransitionCancel(Transition transition) argument
2332 onTransitionPause(Transition transition) argument
2343 onTransitionResume(Transition transition) argument
2359 Transition transition; field in class:Transition.AnimationInfo
2361 AnimationInfo(View view, String name, Transition transition, WindowId windowId, TransitionValues values) argument
2439 onGetEpicenter(Transition transition) argument
[all...]
H A DArcMotion.java16 package android.transition;
38 * <p>This may be used in XML as an element inside a transition.</p>
/frameworks/support/transition/src/main/java/androidx/transition/
H A DChangeTransform.java17 package androidx.transition;
42 * scene change and animates those changes during the transition.
46 * transition.
132 * @return <code>true</code> when a changed parent should execute the transition
154 * transition inside the scene root's overlay or <code>false</code>
521 public void onTransitionEnd(@NonNull Transition transition) { argument
522 transition.removeListener(this);
529 public void onTransitionPause(@NonNull Transition transition) { argument
534 public void onTransitionResume(@NonNull Transition transition) { argument
H A DArcMotion.java17 package androidx.transition;
41 * <p>This may be used in XML as an element inside a transition.</p>
H A DGhostViewApi14.java17 package androidx.transition;
H A DTranslationAnimationCreator.java17 package androidx.transition;
29 * will not blink out or shift suddenly when the transition is interrupted.
H A DViewUtils.java17 package androidx.transition;
H A DViewUtilsBase.java17 package androidx.transition;
/frameworks/base/services/core/java/com/android/server/wm/
H A DAccessibilityController.java172 public void onAppWindowTransitionLocked(WindowState windowState, int transition) { argument
174 mDisplayMagnifier.onAppWindowTransitionLocked(windowState, transition);
179 public void onWindowTransitionLocked(WindowState windowState, int transition) { argument
181 mDisplayMagnifier.onWindowTransitionLocked(windowState, transition);
340 public void onAppWindowTransitionLocked(WindowState windowState, int transition) { argument
342 Slog.i(LOG_TAG, "Window transition: "
343 + AppTransition.appTransitionToString(transition)
348 switch (transition) {
361 public void onWindowTransitionLocked(WindowState windowState, int transition) { argument
363 Slog.i(LOG_TAG, "Window transition
[all...]
/frameworks/base/core/java/com/android/internal/transition/
H A DEpicenterTranslateClipReveal.java16 package com.android.internal.transition;
27 import android.transition.TransitionValues;
28 import android.transition.Visibility;
40 * epicenter bounds during a visibility transition.
/frameworks/base/core/java/android/widget/
H A DMenuPopupWindow.java23 import android.transition.Transition;
/frameworks/support/frameworks/support/samples/SupportTransitionDemos/src/main/java/com/example/android/support/transition/
H A DSupportTransitionDemos.java17 package com.example.android.support.transition;
59 mainIntent.addCategory("com.example.androidx.transition.SAMPLE_CODE");
/frameworks/support/samples/SupportTransitionDemos/src/main/java/com/example/android/support/transition/
H A DSupportTransitionDemos.java17 package com.example.android.support.transition;
59 mainIntent.addCategory("com.example.androidx.transition.SAMPLE_CODE");
/frameworks/compile/mclinker/lib/LD/
H A DEhFrameReader.cpp114 const Action transition[NumOfStates][NumOfTokenKinds] = { local
139 if (!transition[cur_state][token.kind](pEhFrame, entry, token)) {

Completed in 669 milliseconds

1234567891011