Skip to content

Set of extra Transitions on top of Jetpack Transitions Library

License

Notifications You must be signed in to change notification settings

HarkerPool/Transitions-Everywhere

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Transitions Everywhere

Set of extra Transitions on top of AndroidX Transitions Library.

About

Article about transitions and library
Originally this library was a full backport of Android Platform's Transitions API.
Then all the bug fixes from the library were ported into AndroidX Transitions (previously Support library).
Now this lib has minSdk version 14 (Android 4.0 ICS) and consist of some transitions which are not a part of the official set:

  1. Internal Transitions that was marked as @hide in the platform: Recolor, Rotate, ChangeText and Crossfade.
  2. Two extra transitions: Scale and Translation.

Quick start

dependencies {
    implementation "com.andkulikov:transitionseverywhere:2.0.0-beta01"
}

This version is based on androidx.transition:transition:1.1.0-beta01.

Migration from 1.x guide

  1. Migrate to AndroidX! Support libraries are not updating anymore, to get all the bug fixes you have to use AndroidX transitions.
  2. Replace imports from com.transitionseverywhere. to androidx.transition. for all the classes which are a part of the AndroidX lib.
  3. If you were using TransitionListenerAdapter class use Transition.TransitionListenerAdapter now.
  4. Instead of TransitionManager.setTransitionName() use ViewCompat.setTransitionName().
  5. If you were inflating transitions via xml move your files from anim folder to transition and use android: namespace instead of app:
  6. Some setters in AndroidX transitions are not following the builder pattern, please rewrite this usages with introducing a helper variable if you encounter the issue.
  7. Instead of TranslationTransition() use Translation.

Articles about the version 1.x

Article about transitions and library
Russian version
Chinese: version 1, version 2

About

Set of extra Transitions on top of Jetpack Transitions Library

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%