Home
last modified time | relevance | path

Searched refs:sceneRoot (Results 1 – 3 of 3) sorted by relevance

/packages/apps/TV/common/src/com/android/tv/common/ui/setup/animation/
DFadeAndShortSlide.java53 public abstract float getGoneX(ViewGroup sceneRoot, View view, int[] position, in getGoneX() argument
59 public float getGoneX(ViewGroup sceneRoot, View view, int[] position, int distance) {
60 final boolean isRtl = sceneRoot.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
73 public float getGoneX(ViewGroup sceneRoot, View view, int[] position, int distance) {
74 final boolean isRtl = sceneRoot.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
215 public Animator onAppear(ViewGroup sceneRoot, View view, TransitionValues startValues, in onAppear() argument
223 float startX = mSlideCalculator.getGoneX(sceneRoot, view, position, mDistance); in onAppear()
231 set.play(slideAnimator).with(mFade.onAppear(sceneRoot, view, startValues, endValues)); in onAppear()
240 public Animator onDisappear(ViewGroup sceneRoot, final View view, TransitionValues startValues, in onDisappear() argument
248 float endX = mSlideCalculator.getGoneX(sceneRoot, view, position, mDistance); in onDisappear()
[all …]
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
DStopwatchFragment.java415 final ViewGroup sceneRoot = (ViewGroup) getView(); in showOrHideLaps() local
416 if (sceneRoot == null) { in showOrHideLaps()
420 TransitionManager.beginDelayedTransition(sceneRoot); in showOrHideLaps()
434 final int top = sceneRoot.getPaddingTop(); in showOrHideLaps()
435 final int left = sceneRoot.getPaddingLeft(); in showOrHideLaps()
436 final int right = sceneRoot.getPaddingRight(); in showOrHideLaps()
437 sceneRoot.setPadding(left, top, right, bottom); in showOrHideLaps()
/packages/apps/TV/src/com/android/tv/ui/
DTvTransitionManager.java258 private Scene buildScene(ViewGroup sceneRoot, final TransitionLayout layout) { in buildScene() argument
259 final Scene scene = new Scene(sceneRoot, (View) layout); in buildScene()
306 ViewGroup sceneRoot, TransitionValues startValues, TransitionValues endValues) { in createAnimator() argument
308 animator.setTarget(sceneRoot); in createAnimator()
309 animator.addListener(new HardwareLayerAnimatorListenerAdapter(sceneRoot)); in createAnimator()