Java Code Examples for android.transition.TransitionSet#addTransition()
The following examples show how to use
android.transition.TransitionSet#addTransition() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: GalleryFragment.java From animation-samples with Apache License 2.0 | 6 votes |
public GalleryFragment() { final Fade fade = new Fade(); fade.addTarget(R.id.appbar); Explode explode = new Explode(); explode.excludeTarget(R.id.appbar, true); Elevation elevation = new Elevation(); elevation.addTarget(R.id.gallery_card); elevation.setStartDelay(250); // arbitrarily chosen delay TransitionSet exit = new TransitionSet(); exit.addTransition(fade); exit.addTransition(explode); exit.addTransition(elevation); setExitTransition(exit); }
Example 2
Source File: DetailsFragment.java From mosby with Apache License 2.0 | 6 votes |
@TargetApi(21) private void initTransitions() { Window window = getActivity().getWindow(); window.setEnterTransition( new ExplodeFadeEnterTransition(senderNameView, senderMailView, separatorLine)); window.setExitTransition(new ExcludedExplodeTransition()); window.setReenterTransition(new ExcludedExplodeTransition()); window.setReturnTransition(new ExcludedExplodeTransition()); TransitionSet textSizeSet = new TransitionSet(); textSizeSet.addTransition( TransitionInflater.from(getActivity()).inflateTransition(android.R.transition.move)); TextSizeTransition textSizeTransition = new TextSizeTransition(); textSizeTransition.addTarget(R.id.subject); textSizeTransition.addTarget(getString(R.string.shared_mail_subject)); textSizeSet.addTransition(textSizeTransition); textSizeSet.setOrdering(TransitionSet.ORDERING_TOGETHER); window.setSharedElementEnterTransition(textSizeSet); getActivity().setEnterSharedElementCallback( new TextSizeEnterSharedElementCallback(getActivity())); }
Example 3
Source File: AlbumDetailActivity.java From android-animations-transitions with MIT License | 6 votes |
private Transition createTransition() { TransitionSet set = new TransitionSet(); set.setOrdering(TransitionSet.ORDERING_SEQUENTIAL); Transition tFab = new Scale(); tFab.setDuration(150); tFab.addTarget(fab); Transition tTitle = new Fold(); tTitle.setDuration(150); tTitle.addTarget(titlePanel); Transition tTrack = new Fold(); tTrack.setDuration(150); tTrack.addTarget(trackPanel); set.addTransition(tTrack); set.addTransition(tTitle); set.addTransition(tFab); return set; }
Example 4
Source File: LiveStreamActivity.java From Pocket-Plays-for-Twitch with GNU General Public License v3.0 | 6 votes |
@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP) private TransitionSet constructTransitions() { int[] slideTargets = {R.id.ChatRecyclerView, R.id.chat_input, R.id.chat_input_divider}; Transition slideTransition = new Slide(Gravity.BOTTOM); Transition fadeTransition = new Fade(); for (int slideTarget : slideTargets) { slideTransition.addTarget(slideTarget); fadeTransition.excludeTarget(slideTarget, true); } TransitionSet set = new TransitionSet(); set.addTransition(slideTransition); set.addTransition(fadeTransition); return set; }
Example 5
Source File: DefaultShareElementTransitionFactory.java From YcShareElement with Apache License 2.0 | 6 votes |
protected TransitionSet buildShareElementsTransition(List<View> shareViewList) { TransitionSet transitionSet = new TransitionSet(); if (shareViewList == null || shareViewList.size() == 0) { return transitionSet; } transitionSet.addTransition(new ChangeClipBounds()); transitionSet.addTransition(new ChangeTransform()); transitionSet.addTransition(new ChangeBounds()); transitionSet.addTransition(new ChangeTextTransition()); if (mUseDefaultImageTransform) { transitionSet.addTransition(new ChangeImageTransform()); } else { transitionSet.addTransition(new ChangeOnlineImageTransition()); } return transitionSet; }
Example 6
Source File: StreamActivity.java From Twire with GNU General Public License v3.0 | 6 votes |
@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP) private TransitionSet constructTransitions() { int[] slideTargets = {R.id.ChatRecyclerView, R.id.chat_input, R.id.chat_input_divider}; Transition slideTransition = new Slide(Gravity.BOTTOM); Transition fadeTransition = new Fade(); for (int slideTarget : slideTargets) { slideTransition.addTarget(slideTarget); fadeTransition.excludeTarget(slideTarget, true); } TransitionSet set = new TransitionSet(); set.addTransition(slideTransition); set.addTransition(fadeTransition); return set; }
Example 7
Source File: FragmentTransition.java From android_9.0.0_r45 with Apache License 2.0 | 6 votes |
/** * Returns a TransitionSet containing the shared element transition. The wrapping TransitionSet * targets all shared elements to ensure that no other Views are targeted. The shared element * transition can then target any or all shared elements without worrying about accidentally * targeting entering or exiting Views. * * @param inFragment The incoming fragment * @param outFragment the outgoing fragment * @param isPop True if this is a pop transaction or false if it is a normal (add) transaction. * @return A TransitionSet wrapping the shared element transition or null if no such transition * exists. */ private static TransitionSet getSharedElementTransition(Fragment inFragment, Fragment outFragment, boolean isPop) { if (inFragment == null || outFragment == null) { return null; } Transition transition = cloneTransition(isPop ? outFragment.getSharedElementReturnTransition() : inFragment.getSharedElementEnterTransition()); if (transition == null) { return null; } TransitionSet transitionSet = new TransitionSet(); transitionSet.addTransition(transition); return transitionSet; }
Example 8
Source File: DetailActivity.java From animation-samples with Apache License 2.0 | 6 votes |
@Override protected void onCreate(Bundle savedInstanceState) { setContentView(R.layout.activity_detail); postponeEnterTransition(); TransitionSet transitions = new TransitionSet(); Slide slide = new Slide(Gravity.BOTTOM); slide.setInterpolator(AnimationUtils.loadInterpolator(this, android.R.interpolator.linear_out_slow_in)); slide.setDuration(getResources().getInteger(android.R.integer.config_shortAnimTime)); transitions.addTransition(slide); transitions.addTransition(new Fade()); getWindow().setEnterTransition(transitions); Intent intent = getIntent(); sharedElementCallback = new DetailSharedElementEnterCallback(intent); setEnterSharedElementCallback(sharedElementCallback); initialItem = intent.getIntExtra(IntentUtil.SELECTED_ITEM_POSITION, 0); setUpViewPager(intent.<Photo>getParcelableArrayListExtra(IntentUtil.PHOTO)); Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); toolbar.setNavigationOnClickListener(navigationOnClickListener); super.onCreate(savedInstanceState); }
Example 9
Source File: AutoSharedElementCallback.java From native-navigation with MIT License | 5 votes |
@TargetApi(TARGET_API) private Transition getDefaultTransition() { TransitionSet set = new TransitionSet(); set.addTransition(new ChangeBounds()); set.addTransition(new Fade()); set.addTransition(new ChangeImageTransform()); set.setInterpolator(new FastOutSlowInInterpolator()); return set; }
Example 10
Source File: ActivityTransitionCoordinator.java From android_9.0.0_r45 with Apache License 2.0 | 5 votes |
protected static Transition mergeTransitions(Transition transition1, Transition transition2) { if (transition1 == null) { return transition2; } else if (transition2 == null) { return transition1; } else { TransitionSet transitionSet = new TransitionSet(); transitionSet.addTransition(transition1); transitionSet.addTransition(transition2); return transitionSet; } }
Example 11
Source File: ViewActivity.java From recurrence with GNU General Public License v3.0 | 5 votes |
public void setupTransitions() { // Add shared element transition animation if on Lollipop or later if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { // Enter transitions TransitionSet setEnter = new TransitionSet(); Transition slideDown = new Explode(); slideDown.addTarget(headerView); slideDown.excludeTarget(scrollView, true); slideDown.setDuration(500); setEnter.addTransition(slideDown); Transition fadeOut = new Slide(Gravity.BOTTOM); fadeOut.addTarget(scrollView); fadeOut.setDuration(500); setEnter.addTransition(fadeOut); // Exit transitions TransitionSet setExit = new TransitionSet(); Transition slideDown2 = new Explode(); slideDown2.addTarget(headerView); slideDown2.setDuration(570); setExit.addTransition(slideDown2); Transition fadeOut2 = new Slide(Gravity.BOTTOM); fadeOut2.addTarget(scrollView); fadeOut2.setDuration(280); setExit.addTransition(fadeOut2); getWindow().setEnterTransition(setEnter); getWindow().setReturnTransition(setExit); } }
Example 12
Source File: DraweeTransition.java From fresco with MIT License | 5 votes |
public static TransitionSet createTransitionSet( ScalingUtils.ScaleType fromScale, ScalingUtils.ScaleType toScale, @Nullable PointF fromFocusPoint, @Nullable PointF toFocusPoint) { TransitionSet transitionSet = new TransitionSet(); transitionSet.addTransition(new ChangeBounds()); transitionSet.addTransition( new DraweeTransition(fromScale, toScale, fromFocusPoint, toFocusPoint)); return transitionSet; }
Example 13
Source File: FrescoShareElementTransitionfactory.java From YcShareElement with Apache License 2.0 | 4 votes |
@Override protected TransitionSet buildShareElementsTransition(List<View> shareViewList) { TransitionSet transitionSet = super.buildShareElementsTransition(shareViewList); transitionSet.addTransition(new AdvancedDraweeTransition()); return transitionSet; }
Example 14
Source File: FragmentTransition.java From android_9.0.0_r45 with Apache License 2.0 | 4 votes |
/** * Merges exit, shared element, and enter transitions so that they act together or * sequentially as defined in the fragments. */ private static Transition mergeTransitions(Transition enterTransition, Transition exitTransition, Transition sharedElementTransition, Fragment inFragment, boolean isPop) { boolean overlap = true; if (enterTransition != null && exitTransition != null && inFragment != null) { overlap = isPop ? inFragment.getAllowReturnTransitionOverlap() : inFragment.getAllowEnterTransitionOverlap(); } // Wrap the transitions. Explicit targets like in enter and exit will cause the // views to be targeted regardless of excluded views. If that happens, then the // excluded fragments views (hidden fragments) will still be in the transition. Transition transition; if (overlap) { // Regular transition -- do it all together TransitionSet transitionSet = new TransitionSet(); if (enterTransition != null) { transitionSet.addTransition(enterTransition); } if (exitTransition != null) { transitionSet.addTransition(exitTransition); } if (sharedElementTransition != null) { transitionSet.addTransition(sharedElementTransition); } transition = transitionSet; } else { // First do exit, then enter, but allow shared element transition to happen // during both. Transition staggered = null; if (exitTransition != null && enterTransition != null) { staggered = new TransitionSet() .addTransition(exitTransition) .addTransition(enterTransition) .setOrdering(TransitionSet.ORDERING_SEQUENTIAL); } else if (exitTransition != null) { staggered = exitTransition; } else if (enterTransition != null) { staggered = enterTransition; } if (sharedElementTransition != null) { TransitionSet together = new TransitionSet(); if (staggered != null) { together.addTransition(staggered); } together.addTransition(sharedElementTransition); transition = together; } else { transition = staggered; } } return transition; }
Example 15
Source File: MainActivity.java From BLEMeshChat with Mozilla Public License 2.0 | 4 votes |
@Override public void onMessageSelected(View identictionView, View usernameView, int messageId, int peerId) { // Create new fragment to add (Fragment B) Peer peer = mClient.getDataStore().getPeerById(peerId); if (peer == null) { Log.w(TAG, "Could not lookup peer. Cannot show profile"); return; } setTitle(peer.getAlias()); // identictionView.setTransitionName(getString(R.string.identicon_transition_name)); // usernameView.setTransitionName(getString(R.string.username_transition_name)); Fragment profileFragment = ProfileFragment.createForPeer(mClient.getDataStore(), peer); // final TransitionSet sharedElementTransition = new TransitionSet(); // sharedElementTransition.addTransition(new ChangeBounds()); // sharedElementTransition.addTransition(new ChangeTransform()); // sharedElementTransition.setInterpolator(new AccelerateDecelerateInterpolator()); // sharedElementTransition.setDuration(200); final TransitionSet slideTransition = new TransitionSet(); slideTransition.addTransition(new Slide()); slideTransition.setInterpolator(new AccelerateDecelerateInterpolator()); slideTransition.setDuration(300); profileFragment.setEnterTransition(slideTransition); profileFragment.setReturnTransition(slideTransition); // profileFragment.setSharedElementEnterTransition(sharedElementTransition); profileFragment.setAllowEnterTransitionOverlap(false); profileFragment.setAllowReturnTransitionOverlap(false); // Message fragment performs an exit when Profile is added, and an enter when profile is popped // getFragmentManager().findFragmentByTag("messaging").setReenterTransition(slideTransition); // getFragmentManager().findFragmentByTag("messaging").setExitTransition(slideTransition); // getFragmentManager().findFragmentByTag("messaging").setSharedElementEnterTransition(sharedElementTransition); getSupportFragmentManager().beginTransaction() .replace(R.id.container, profileFragment) .addToBackStack("profile") // .addSharedElement(identictionView, getString(R.string.identicon_transition_name)) // .addSharedElement(usernameView, getString(R.string.username_transition_name)) .commit(); Bitmap bitmap = Notification.loadBitmapFromView(identictionView, 100, 100); Palette.generateAsync(bitmap, new Palette.PaletteAsyncListener() { public void onGenerated(Palette p) { mPalette = p; tintSystemBars(getResources().getColor(R.color.primary), getResources().getColor(R.color.primaryDark), p.getVibrantColor(R.color.primary), p.getDarkVibrantColor(R.color.primaryDark)); } }); // Hack animate the drawer icon ValueAnimator drawerAnimator = ValueAnimator.ofFloat(0, 1f); drawerAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { @Override public void onAnimationUpdate(ValueAnimator animation) { mDrawerToggle.onDrawerSlide(null, (Float) animation.getAnimatedValue()); } }); drawerAnimator.start(); }
Example 16
Source File: DetailActivity.java From atlas with Apache License 2.0 | 4 votes |
@Override protected void onCreate(Bundle savedInstanceState) { setContentView(R.layout.activity_detail); postponeEnterTransition(); TransitionSet transitions = new TransitionSet(); Slide slide = new Slide(Gravity.BOTTOM); slide.setInterpolator(AnimationUtils.loadInterpolator(this, android.R.interpolator.linear_out_slow_in)); slide.setDuration(getResources().getInteger(android.R.integer.config_shortAnimTime)); transitions.addTransition(slide); transitions.addTransition(new Fade()); getWindow().setEnterTransition(transitions); Intent intent = getIntent(); sharedElementCallback = new DetailSharedElementEnterCallback(intent); setEnterSharedElementCallback(sharedElementCallback); try { initialItem = Integer.parseInt(intent.getData().getLastPathSegment()); } catch (NumberFormatException e) { initialItem = 0; } PhotoService.getInstance().getPhotosAsync(new PhotoService.PhotoCallback() { @Override public void success(ArrayList<Photo> photos) { setUpViewPager(photos); findViewById(android.R.id.empty).setVisibility(View.GONE); } @Override public void error() { finishAfterTransition(); } }); Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); toolbar.setNavigationOnClickListener(navigationOnClickListener); super.onCreate(savedInstanceState); }
Example 17
Source File: DetailActivity.java From android-instant-apps with Apache License 2.0 | 4 votes |
@Override protected void onCreate(Bundle savedInstanceState) { setContentView(R.layout.activity_detail); postponeEnterTransition(); TransitionSet transitions = new TransitionSet(); Slide slide = new Slide(Gravity.BOTTOM); slide.setInterpolator(AnimationUtils.loadInterpolator(this, android.R.interpolator.linear_out_slow_in)); slide.setDuration(getResources().getInteger(android.R.integer.config_shortAnimTime)); transitions.addTransition(slide); transitions.addTransition(new Fade()); getWindow().setEnterTransition(transitions); Intent intent = getIntent(); sharedElementCallback = new DetailSharedElementEnterCallback(intent); setEnterSharedElementCallback(sharedElementCallback); try { initialItem = Integer.parseInt(intent.getData().getLastPathSegment()); } catch (NumberFormatException e) { initialItem = 0; } PhotoService.getInstance().getPhotosAsync(new PhotoService.PhotoCallback() { @Override public void success(ArrayList<Photo> photos) { setUpViewPager(photos); findViewById(android.R.id.empty).setVisibility(View.GONE); } @Override public void error() { finishAfterTransition(); } }); Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); toolbar.setNavigationOnClickListener(navigationOnClickListener); super.onCreate(savedInstanceState); }
Example 18
Source File: TransitionUtils.java From material-components-android with Apache License 2.0 | 4 votes |
static void maybeAddTransition(TransitionSet transitionSet, @Nullable Transition transition) { if (transition != null) { transitionSet.addTransition(transition); } }
Example 19
Source File: AlbumDetailActivity.java From android-animations-transitions with MIT License | 4 votes |
private void setupTransitions() { // Slide slide = new Slide(Gravity.BOTTOM); // slide.excludeTarget(android.R.id.statusBarBackground, true); // getWindow().setEnterTransition(slide); // getWindow().setSharedElementsUseOverlay(false); mTransitionManager = new TransitionManager(); ViewGroup transitionRoot = detailContainer; // Expanded scene mExpandedScene = Scene.getSceneForLayout(transitionRoot, R.layout.activity_album_detail_expanded, this); mExpandedScene.setEnterAction(new Runnable() { @Override public void run() { ButterKnife.bind(AlbumDetailActivity.this); populate(); mCurrentScene = mExpandedScene; } }); TransitionSet expandTransitionSet = new TransitionSet(); expandTransitionSet.setOrdering(TransitionSet.ORDERING_SEQUENTIAL); ChangeBounds changeBounds = new ChangeBounds(); changeBounds.setDuration(200); expandTransitionSet.addTransition(changeBounds); Fade fadeLyrics = new Fade(); fadeLyrics.addTarget(R.id.lyrics); fadeLyrics.setDuration(150); expandTransitionSet.addTransition(fadeLyrics); // Collapsed scene mCollapsedScene = Scene.getSceneForLayout(transitionRoot, R.layout.activity_album_detail, this); mCollapsedScene.setEnterAction(new Runnable() { @Override public void run() { ButterKnife.bind(AlbumDetailActivity.this); populate(); mCurrentScene = mCollapsedScene; } }); TransitionSet collapseTransitionSet = new TransitionSet(); collapseTransitionSet.setOrdering(TransitionSet.ORDERING_SEQUENTIAL); Fade fadeOutLyrics = new Fade(); fadeOutLyrics.addTarget(R.id.lyrics); fadeOutLyrics.setDuration(150); collapseTransitionSet.addTransition(fadeOutLyrics); ChangeBounds resetBounds = new ChangeBounds(); resetBounds.setDuration(200); collapseTransitionSet.addTransition(resetBounds); mTransitionManager.setTransition(mExpandedScene, mCollapsedScene, collapseTransitionSet); mTransitionManager.setTransition(mCollapsedScene, mExpandedScene, expandTransitionSet); mCollapsedScene.enter(); // postponeEnterTransition(); }
Example 20
Source File: FragmentTransitionCompat21.java From adt-leanback-support with Apache License 2.0 | 4 votes |
public static Object mergeTransitions(Object enterTransitionObject, Object exitTransitionObject, Object sharedElementTransitionObject, boolean allowOverlap) { boolean overlap = true; Transition enterTransition = (Transition) enterTransitionObject; Transition exitTransition = (Transition) exitTransitionObject; Transition sharedElementTransition = (Transition) sharedElementTransitionObject; if (enterTransition != null && exitTransition != null) { overlap = allowOverlap; } // Wrap the transitions. Explicit targets like in enter and exit will cause the // views to be targeted regardless of excluded views. If that happens, then the // excluded fragments views (hidden fragments) will still be in the transition. Transition transition; if (overlap) { // Regular transition -- do it all together TransitionSet transitionSet = new TransitionSet(); if (enterTransition != null) { transitionSet.addTransition(enterTransition); } if (exitTransition != null) { transitionSet.addTransition(exitTransition); } if (sharedElementTransition != null) { transitionSet.addTransition(sharedElementTransition); } transition = transitionSet; } else { // First do exit, then enter, but allow shared element transition to happen // during both. Transition staggered = null; if (exitTransition != null && enterTransition != null) { staggered = new TransitionSet() .addTransition(exitTransition) .addTransition(enterTransition) .setOrdering(TransitionSet.ORDERING_SEQUENTIAL); } else if (exitTransition != null) { staggered = exitTransition; } else if (enterTransition != null) { staggered = enterTransition; } if (sharedElementTransition != null) { TransitionSet together = new TransitionSet(); if (staggered != null) { together.addTransition(staggered); } together.addTransition(sharedElementTransition); transition = together; } else { transition = staggered; } } return transition; }