transition

    [Android] Activity 좌우로 전환 애니메이션 적용하기

    📌 Activity 좌우로 전환 애니메이션 적용하기 안드로이드는 위 아래로 전환되는 애니메이션을 기본적으로 적용하고 있습니다. 이를 좌우로 전환시키도록 바꾸고 싶을 때, 아래와 같은 설정을 해주시면 됩니다. // in Activity override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) with(window) { enterTransition = Slide().also { it.excludeTarget(android.R.id.statusBarBackground, true) it.excludeTarget(android.R.id.navigationBarBackground, true) it.slideEdge ..