Vintage appMaker의 Tech Blog

[link 모음] Android Transitions를 이용한 Animation 본문

Source code or Tip/Android(Java, Kotlin)

[link 모음] Android Transitions를 이용한 Animation

VintageappMaker 2021. 7. 5. 09:53

Android의 화면전환시 애니메이션에 대한 링크모음

 

🎨 Github예제: 가장 깔끔하게 정리를 잘한 레포지토리.
Activity, Fragment, Layer 간의 화면이동시 적용되는 대부분의 애니메이션에 대한 설명과 예제를 다루고 있다. 

 

lgvalle/Material-Animations

Android Transition animations explanation with examples. - lgvalle/Material-Animations

github.com

 

🎨 Shared Element 위주설명: 
Activity, Fragment, Layer에서 Shared Element를 다루고 있다. 

 

Using shared element transitions in activities and fragments - Android Authority

We discuss how to use shared element transitions in both Activities and Fragments. The article covers both static and dynamically generated Views.

www.androidauthority.com

 

🎨 Shared Element 실사용 예제: 
가장 흔하게 보는 Shared Element를 다루고 있다. 

 

Shared Element Activity Transition | CodePath Android Cliffnotes

Overview Traditionally transitions between different activities or fragments involved enter and exit transitions that animated entire view hierarchies independent to each other. Example of such transitions are a fade transition, slide transition or the new

guides.codepath.com

 

 

🎨 Animation 위주설명: 

기초적인 Animation에 대한 설명을 정리

 

Animations | CodePath Android Cliffnotes

Overview Android supports powerful animations for both views and transitions between activities. There are three animation systems that work differently for different cases but the most important are Property animations. Property animations allow us to ani

guides.codepath.com

 

Comments