back to home

andkulikov / Transitions-Everywhere

Set of extra Transitions on top of Jetpack Transitions Library

4,798 stars
481 forks
7 issues
Java

AI Architecture Analysis

This repository is indexed by RepoMind. By analyzing andkulikov/Transitions-Everywhere in our AI interface, you can instantly generate complete architecture diagrams, visualize control flows, and perform automated security audits across the entire codebase.

Our Agentic Context Augmented Generation (Agentic CAG) engine loads full source files into context on-demand, avoiding the fragmentation of traditional RAG systems. Ask questions about the architecture, dependencies, or specific features to see it in action.

Source files are only loaded when you start an analysis to optimize performance.

Embed this Badge

Showcase RepoMind's analysis directly in your repository's README.

[![Analyzed by RepoMind](https://img.shields.io/badge/Analyzed%20by-RepoMind-4F46E5?style=for-the-badge)](https://repomind.in/repo/andkulikov/Transitions-Everywhere)
Preview:Analyzed by RepoMind

Repository Overview (README excerpt)

Crawler view

Transitions Everywhere ============ Set of extra Transitions on top of [AndroidX Transitions Library][1]. About ============ [Article about transitions and library][2] 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 ============ This version should be used if you are specifying 29 (Q) as a : Otherwise, if you specify 29 as some of the transitions will not work properly. Instead of the reflection calls this version uses the new public methods added in API Level 29. It is based on androidx.transition:transition:1.2.0 . Previous version if you are not yet on 29 (Q) SDK: This version is based on androidx.transition:transition:1.1.0 . 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 Transition.TransitionListenerAdapter class use 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][2] [Russian version][3] Chinese: [version 1][5], [version 2][6] [Changelog for version 1.x][4] ============ [1]: https://developer.android.com/reference/androidx/transition/package-summary [2]: https://medium.com/@andkulikov/animate-all-the-things-transitions-in-android-914af5477d50 [3]: http://habrahabr.ru/post/243363/ [4]: https://github.com/andkulikov/Transitions-Everywhere/blob/master/library(1.x)/CHANGELOG.md [5]: https://yanlu.me/animate-all-the-things-transitions-in-android/ [6]: http://www.jianshu.com/p/98f2ec280945 [7]: https://medium.com/@andkulikov/support-library-for-transitions-overview-and-comparison-c41be713cf8c