Home
last modified time | relevance | path

Searched refs:sharedElement (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/core/java/android/app/
DSharedElementCallback.java175 public Parcelable onCaptureSharedElementSnapshot(View sharedElement, Matrix viewToGlobalMatrix, in onCaptureSharedElementSnapshot() argument
177 if (sharedElement instanceof ImageView) { in onCaptureSharedElementSnapshot()
178 ImageView imageView = ((ImageView) sharedElement); in onCaptureSharedElementSnapshot()
212 ViewGroup parent = (ViewGroup) sharedElement.getParent(); in onCaptureSharedElementSnapshot()
213 return TransitionUtils.createViewBitmap(sharedElement, mTempMatrix, screenBounds, parent); in onCaptureSharedElementSnapshot()
DActivityTransitionCoordinator.java615 View sharedElement = mSharedElements.get(i); in setSharedElementState() local
617 SharedElementOriginalState originalState = getOldSharedElementState(sharedElement, in setSharedElementState()
620 setSharedElementState(sharedElement, name, sharedElementState, in setSharedElementState()
736 View sharedElement = mSharedElements.get(i); in captureSharedElementState() local
738 captureSharedElementState(sharedElement, name, bundle, tempMatrix, tempBounds); in captureSharedElementState()
920 View sharedElement = mSharedElements.get(i); in moveSharedElementsFromOverlay() local
921 GhostView.removeGhost(sharedElement); in moveSharedElementsFromOverlay()
DFragmentTransaction.java227 public abstract FragmentTransaction addSharedElement(View sharedElement, String name); in addSharedElement() argument
DActivityOptions.java1025 View sharedElement, String sharedElementName) { in makeSceneTransitionAnimation() argument
1026 … return makeSceneTransitionAnimation(activity, Pair.create(sharedElement, sharedElementName)); in makeSceneTransitionAnimation()
1131 Pair<View, String> sharedElement = sharedElements[i]; in makeSceneTransitionAnimation() local
1132 String sharedElementName = sharedElement.second; in makeSceneTransitionAnimation()
1137 View view = sharedElement.first; in makeSceneTransitionAnimation()
1141 views.add(sharedElement.first); in makeSceneTransitionAnimation()
DBackStackRecord.java529 public FragmentTransaction addSharedElement(View sharedElement, String name) { in addSharedElement() argument
530 String transitionName = sharedElement.getTransitionName(); in addSharedElement()
/frameworks/base/packages/SystemUI/compose/scene/src/com/android/compose/animation/scene/
DTransitionDsl.kt176 fun sharedElement(matcher: ElementMatcher, enabled: Boolean = true) in fractionRange() method
DTransitionDslImpl.kt210 override fun sharedElement(matcher: ElementMatcher, enabled: Boolean) { in sharedElement() method in com.android.compose.animation.scene.TransitionBuilderImpl
/frameworks/base/packages/SystemUI/compose/scene/tests/src/com/android/compose/animation/scene/transformation/
DSharedElementTest.kt125 sharedElement(TestElements.Foo, enabled = false) in testSharedElementDisabled()
/frameworks/base/packages/SystemUI/compose/scene/tests/src/com/android/compose/animation/scene/
DElementTest.kt1290 sharedElement(TestElements.Foo, enabled = false) in <lambda>()