Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/app/
DSharedElementCallback.java169 public Parcelable onCaptureSharedElementSnapshot(View sharedElement, Matrix viewToGlobalMatrix, in onCaptureSharedElementSnapshot() argument
171 if (sharedElement instanceof ImageView) { in onCaptureSharedElementSnapshot()
172 ImageView imageView = ((ImageView) sharedElement); in onCaptureSharedElementSnapshot()
197 return TransitionUtils.createViewBitmap(sharedElement, mTempMatrix, screenBounds); in onCaptureSharedElementSnapshot()
DActivityOptions.java616 View sharedElement, String sharedElementName) { in makeSceneTransitionAnimation() argument
617 … return makeSceneTransitionAnimation(activity, Pair.create(sharedElement, sharedElementName)); in makeSceneTransitionAnimation()
654 Pair<View, String> sharedElement = sharedElements[i]; in makeSceneTransitionAnimation() local
655 String sharedElementName = sharedElement.second; in makeSceneTransitionAnimation()
660 View view = sharedElement.first; in makeSceneTransitionAnimation()
664 views.add(sharedElement.first); in makeSceneTransitionAnimation()
DActivityTransitionCoordinator.java542 View sharedElement = mSharedElements.get(i); in setSharedElementState() local
544 SharedElementOriginalState originalState = getOldSharedElementState(sharedElement, in setSharedElementState()
547 setSharedElementState(sharedElement, name, sharedElementState, in setSharedElementState()
670 View sharedElement = mSharedElements.get(i); in captureSharedElementState() local
672 captureSharedElementState(sharedElement, name, bundle, tempMatrix, tempBounds); in captureSharedElementState()
850 View sharedElement = mSharedElements.get(i); in moveSharedElementsFromOverlay() local
851 GhostView.removeGhost(sharedElement); in moveSharedElementsFromOverlay()
DFragmentTransaction.java198 public abstract FragmentTransaction addSharedElement(View sharedElement, String name); in addSharedElement() argument
DBackStackRecord.java572 public FragmentTransaction addSharedElement(View sharedElement, String name) { in addSharedElement() argument
573 String transitionName = sharedElement.getTransitionName(); in addSharedElement()
/frameworks/support/v4/java/android/support/v4/app/
DSharedElementCallback.java167 public Parcelable onCaptureSharedElementSnapshot(View sharedElement, Matrix viewToGlobalMatrix, in onCaptureSharedElementSnapshot() argument
169 if (sharedElement instanceof ImageView) { in onCaptureSharedElementSnapshot()
170 ImageView imageView = ((ImageView) sharedElement); in onCaptureSharedElementSnapshot()
206 sharedElement.draw(canvas); in onCaptureSharedElementSnapshot()
DActivityOptionsCompat.java132 View sharedElement, String sharedElementName) { in makeSceneTransitionAnimation() argument
136 sharedElement, sharedElementName)); in makeSceneTransitionAnimation()
DActivityCompat.java456 public Parcelable onCaptureSharedElementSnapshot(View sharedElement, in onCaptureSharedElementSnapshot() argument
458 return mCallback.onCaptureSharedElementSnapshot(sharedElement, viewToGlobalMatrix, in onCaptureSharedElementSnapshot()
DFragmentTransaction.java210 public abstract FragmentTransaction addSharedElement(View sharedElement, String name); in addSharedElement() argument
DBackStackRecord.java525 public FragmentTransaction addSharedElement(View sharedElement, String name) { in addSharedElement() argument
527 String transitionName = FragmentTransitionCompat21.getTransitionName(sharedElement); in addSharedElement()
/frameworks/support/v4/api21/android/support/v4/app/
DActivityCompat21.java72 public abstract Parcelable onCaptureSharedElementSnapshot(View sharedElement, in onCaptureSharedElementSnapshot() argument
117 public Parcelable onCaptureSharedElementSnapshot(View sharedElement, in onCaptureSharedElementSnapshot() argument
120 return mCallback.onCaptureSharedElementSnapshot(sharedElement, viewToGlobalMatrix, in onCaptureSharedElementSnapshot()
DActivityOptionsCompat21.java30 View sharedElement, String sharedElementName) { in makeSceneTransitionAnimation() argument
32 ActivityOptions.makeSceneTransitionAnimation(activity, sharedElement, in makeSceneTransitionAnimation()
/frameworks/support/v4/tests/java/android/support/v4/app/
DFragmentTransitionTest.java57 final View sharedElement = mActivity.findViewById(R.id.hello); in testFragmentTransition()
58 assertEquals("source", ViewCompat.getTransitionName(sharedElement)); in testFragmentTransition()
63 .addSharedElement(sharedElement, "destination") in testFragmentTransition()