Searched refs:transition (Results 226 - 250 of 270) sorted by relevance

1234567891011

/frameworks/support/leanback/src/main/java/androidx/leanback/app/
H A DBrowseFragment.java40 import androidx.leanback.transition.TransitionHelper;
41 import androidx.leanback.transition.TransitionListener;
121 * transition.
142 // add additional requirement to launch entrance transition.
188 // if popped "headers" backstack, initiate the show header transition if needed
192 // restored: don't start header transition, but add the entry back.
214 * Callback when headers transition starts.
216 * @param withHeaders True if the transition will result in headers
222 * Callback when headers transition stops.
224 * @param withHeaders True if the transition wil
[all...]
H A DBrowseSupportFragment.java38 import androidx.leanback.transition.TransitionHelper;
39 import androidx.leanback.transition.TransitionListener;
117 * transition.
138 // add additional requirement to launch entrance transition.
184 // if popped "headers" backstack, initiate the show header transition if needed
188 // restored: don't start header transition, but add the entry back.
208 * Callback when headers transition starts.
210 * @param withHeaders True if the transition will result in headers
216 * Callback when headers transition stops.
218 * @param withHeaders True if the transition wil
[all...]
/frameworks/support/transition/src/main/java/androidx/transition/
H A DTransition.java17 package androidx.transition;
64 * captured property values. A custom transition knows what property values
66 * changes to those values. For example, the {@link Fade} transition tracks
80 * <p>Transitions can be declared in XML resource files inside the <code>res/transition</code>
82 * subclasses along with attributes to define some of the attributes of that transition.
84 * transition:</p>
90 * <p>Note that attributes for the transition are not required, just as they are
93 * elaborate example which declares a {@link TransitionSet} transition with
111 * transition uses a fadingMode of {@link Fade#OUT} instead of the default
114 * this transition act
2289 onTransitionStart(@onNull Transition transition) argument
2300 onTransitionEnd(@onNull Transition transition) argument
2312 onTransitionCancel(@onNull Transition transition) argument
2324 onTransitionPause(@onNull Transition transition) argument
2335 onTransitionResume(@onNull Transition transition) argument
2357 AnimationInfo(View view, String name, Transition transition, WindowIdImpl windowId, TransitionValues values) argument
2435 onGetEpicenter(@onNull Transition transition) argument
[all...]
H A DChangeImageTransform.java17 package androidx.transition;
38 * scene change and animates it during the transition.
122 * @param sceneRoot The root of the transition hierarchy.
H A DExplode.java17 package androidx.transition;
32 * This transition tracks changes to the visibility of target views in the
H A DSlide.java17 package androidx.transition;
44 * This transition tracks changes to the visibility of target views in the
H A DTransitionUtils.java17 package androidx.transition;
H A DViewOverlayApi14.java17 package androidx.transition;
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardwareImpl.java473 int transition,
484 "GeofenceTransition| " + location + ", transition:" + transition +
491 transition,
808 int transition,
814 mTransition = transition;
470 reportGeofenceTransition( int geofenceId, Location location, int transition, long transitionTimestamp, int monitoringType, int sourcesUsed) argument
806 GeofenceTransition( int geofenceId, int transition, long timestamp, Location location, int monitoringType, int sourcesUsed) argument
/frameworks/base/core/java/com/android/internal/policy/
H A DPhoneWindow.java86 import android.transition.Scene;
87 import android.transition.Transition;
88 import android.transition.TransitionInflater;
89 import android.transition.TransitionManager;
90 import android.transition.TransitionSet;
2800 Transition transition = defaultValue;
2801 if (transitionId != -1 && transitionId != R.transition.no_transition) {
2803 transition = inflater.inflateTransition(transitionId);
2804 if (transition instanceof TransitionSet &&
2805 ((TransitionSet)transition)
3205 setReturnTransition(Transition transition) argument
3215 setReenterTransition(Transition transition) argument
3225 setSharedElementReturnTransition(Transition transition) argument
3235 setSharedElementReenterTransition(Transition transition) argument
[all...]
/frameworks/support/fragment/src/androidTest/java/androidx/fragment/app/
H A DFragmentTransitionTest.java34 import android.transition.TransitionSet;
104 // enter transition
109 // exit transition
121 // reenter transition
130 // return transition
138 // Test that shared elements transition from one fragment to the next
144 // Now do a transition to scene2
199 // should be a normal transition from fragment1 to fragment2
263 // Now do a transition to scene2
323 // Now do a transition t
874 verifyAndClearTransition(TargetTracking transition, Rect epicenter, View... expected) argument
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DBoundsAnimationController.java118 BoundsAnimationController(Context context, AppTransition transition, Handler handler, argument
121 mAppTransition = transition;
218 // windows-drawn signal before we start the rest of the transition down into PiP.
/frameworks/support/transition/src/androidTest/java/androidx/transition/
H A DFadeTest.java17 package androidx.transition;
45 import androidx.transition.test.R;
218 // After a transition, a transitioned view as part of a scene should not be removed
H A DArcMotionTest.java17 package androidx.transition;
H A DVisibilityTest.java17 package androidx.transition;
/frameworks/base/core/java/android/app/
H A DActivityTransitionState.java21 import android.transition.Transition;
89 * Has an exit transition been started? If so, we don't want to double-exit.
94 * Postpone painting and starting the enter transition until this is false.
99 * Potential exit transition coordinators.
/frameworks/base/core/java/android/transition/
H A DChangeImageTransform.java16 package android.transition;
35 * scene change and animates it during the transition.
141 * @param sceneRoot The root of the transition hierarchy.
H A DCrossfade.java17 package android.transition;
39 * This transition captures bitmap representations of target views before and
42 * <p>Note: This transition is not compatible with {@link TextureView}
49 // a given target view. This would save bitmap comparisons in this transition, for example.
94 * Flag specifying that the transition should not animate any
97 * this transition
103 * Flag specifying that the transition should animate any
122 * transition is run.
143 * transition animation, one of {@link #RESIZE_BEHAVIOR_NONE} and
147 * transition i
[all...]
H A DExplode.java16 package android.transition;
30 * This transition tracks changes to the visibility of target views in the
H A DSlide.java16 package android.transition;
36 * This transition tracks changes to the visibility of target views in the
H A DTransitionUtils.java17 package android.transition;
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DVerticalGridPresenter.java24 import androidx.leanback.transition.TransitionHelper;
394 * Changes the visibility of views. The entrance transition will be run against the views that
399 * @param afterEntrance true if children of vertical grid participating in entrance transition
H A DGuidedActionsStylist.java54 import androidx.leanback.transition.TransitionEpicenterCallback;
55 import androidx.leanback.transition.TransitionHelper;
56 import androidx.leanback.transition.TransitionListener;
954 * override the method, instead app can provide its own drawable that supports transition
1094 * Expands or collapse the sub actions list view with transition animation
1106 * Returns true if it is running an expanding or collapsing transition, false otherwise.
1107 * @return True if it is running an expanding or collapsing transition, false otherwise.
1117 * @return True if it is running an expanding or collapsing transition, false otherwise.
1124 * Start transition to expand or collapse GuidedActionStylist.
1184 * @param withTransition True to run transition animatio
[all...]
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DMenuPopupWindow.java25 import android.transition.Transition;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarView.java172 public void startTransition(LayoutTransition transition, ViewGroup container, argument
178 mStartDelay = transition.getStartDelay(transitionType);
179 mDuration = transition.getDuration(transitionType);
180 mInterpolator = transition.getInterpolator(transitionType);
185 public void endTransition(LayoutTransition transition, ViewGroup container, argument

Completed in 270 milliseconds

1234567891011