HomeSort by relevance Sort by last modified time
    Searched refs:sharedElements (Results 1 - 20 of 20) sorted by null

  /frameworks/support/v4/api21/android/support/v4/app/
ActivityCompat21.java 58 List<View> sharedElements, List<View> sharedElementSnapshots);
61 List<View> sharedElements, List<View> sharedElementSnapshots);
66 Map<String, View> sharedElements);
89 List<View> sharedElements, List<View> sharedElementSnapshots) {
90 mCallback.onSharedElementStart(sharedElementNames, sharedElements,
95 public void onSharedElementEnd(List<String> sharedElementNames, List<View> sharedElements,
97 mCallback.onSharedElementEnd(sharedElementNames, sharedElements,
107 public void onMapSharedElements(List<String> names, Map<String, View> sharedElements) {
108 mCallback.onMapSharedElements(names, sharedElements);
ActivityOptionsCompat21.java 37 View[] sharedElements, String[] sharedElementNames) {
39 if (sharedElements != null) {
40 pairs = new Pair[sharedElements.length];
42 pairs[i] = Pair.create(sharedElements[i], sharedElementNames[i]);
  /frameworks/support/v4/java/android/support/v4/app/
ActivityOptionsCompat.java 144 * Activity. The position of the first element in sharedElements
152 * @param sharedElements The names of the shared elements to transfer to the called
159 Pair<View, String>... sharedElements) {
163 if (sharedElements != null) {
164 views = new View[sharedElements.length];
165 names = new String[sharedElements.length];
166 for (int i = 0; i < sharedElements.length; i++) {
167 views[i] = sharedElements[i].first;
168 names[i] = sharedElements[i].second;
ActivityCompat.java 388 List<View> sharedElements, List<View> sharedElementSnapshots) {
389 mCallback.onSharedElementStart(sharedElementNames, sharedElements,
394 public void onSharedElementEnd(List<String> sharedElementNames, List<View> sharedElements,
396 mCallback.onSharedElementEnd(sharedElementNames, sharedElements,
406 public void onMapSharedElements(List<String> names, Map<String, View> sharedElements) {
407 mCallback.onMapSharedElements(names, sharedElements);
SharedElementCallback.java 71 * @param sharedElements The shared elements that are part of the View hierarchy.
79 List<View> sharedElements, List<View> sharedElementSnapshots) {}
102 * @param sharedElements The shared elements that are part of the View hierarchy.
110 List<View> sharedElements, List<View> sharedElementSnapshots) {}
142 * @param sharedElements The mapping of shared element names to Views. The best guess
143 * will be filled into sharedElements based on the transitionNames.
145 public void onMapSharedElements(List<String> names, Map<String, View> sharedElements) {}
  /frameworks/base/core/java/android/app/
SharedElementCallback.java 74 * @param sharedElements The shared elements that are part of the View hierarchy.
82 List<View> sharedElements, List<View> sharedElementSnapshots) {}
105 * @param sharedElements The shared elements that are part of the View hierarchy.
113 List<View> sharedElements, List<View> sharedElementSnapshots) {}
145 * @param sharedElements The mapping of shared element names to Views. The best guess
146 * will be filled into sharedElements based on the transitionNames.
148 public void onMapSharedElements(List<String> names, Map<String, View> sharedElements) {}
257 * @param sharedElements The shared elements that are part of the View hierarchy.
262 List<View> sharedElements, OnSharedElementsReadyListener listener) {
ActivityTransitionCoordinator.java 219 protected void viewsReady(ArrayMap<String, View> sharedElements) {
220 sharedElements.retainAll(mAllSharedElementNames);
222 mListener.onMapSharedElements(mAllSharedElementNames, sharedElements);
224 setSharedElements(sharedElements);
241 * @param sharedElements The map of transition names to shared elements to set into
244 private void setSharedElements(ArrayMap<String, View> sharedElements) {
246 while (!sharedElements.isEmpty()) {
247 final int numSharedElements = sharedElements.size();
249 final View view = sharedElements.valueAt(i);
250 final String name = sharedElements.keyAt(i)
    [all...]
EnterTransitionCoordinator.java 112 protected void viewsReady(ArrayMap<String, View> sharedElements) {
113 super.viewsReady(sharedElements);
129 private void triggerViewsReady(final ArrayMap<String, View> sharedElements) {
137 (sharedElements.isEmpty() || !sharedElements.valueAt(0).isLayoutRequested()))) {
138 viewsReady(sharedElements);
145 viewsReady(sharedElements);
154 ArrayMap<String, View> sharedElements = new ArrayMap<String, View>();
157 decorView.findNamedViews(sharedElements);
164 View view = sharedElements.remove(localName)
    [all...]
ActivityOptions.java 523 * Activity. The position of the first element in sharedElements
531 * @param sharedElements The names of the shared elements to transfer to the called
540 Pair<View, String>... sharedElements) {
551 if (sharedElements != null) {
552 for (int i = 0; i < sharedElements.length; i++) {
553 Pair<View, String> sharedElement = sharedElements[i];
    [all...]
  /cts/tests/tests/app.usage/src/android/app/usage/cts/
ActivityTransitionActivity.java 104 final List<View> sharedElements,
109 result.putInt(ARRIVE_ENTER_START_VISIBILITY, sharedElements.get(0).getVisibility());
120 sharedElements.get(0).getVisibility());
ActivityTransitionTest.java 63 List<View> sharedElements,
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DetailsOverviewSharedElementHelper.java 108 List<View> sharedElements, List<View> sharedElementSnapshots) {
112 if (sharedElements.size() < 1) {
115 View overviewView = sharedElements.get(0);
145 List<View> sharedElements, List<View> sharedElementSnapshots) {
149 if (sharedElements.size() < 1) {
152 View overviewView = sharedElements.get(0);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
ActivityTransition.java 110 Map<String, View> sharedElements) {
111 sharedElements.put("hero", mHero);
  /prebuilts/sdk/current/support/v13/
android-support-v13.jar 
  /prebuilts/sdk/current/support/v4/
android-support-v4.jar 
  /prebuilts/sdk/current/support/v17/leanback/libs/
android-support-v17-leanback.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/22/
android.jar 

Completed in 880 milliseconds