Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 탭 전환 시 화면 오버래핑 되는 현상 수정 #336

Conversation

Songgyubin
Copy link

Overview (Required)

jetpack compose navigation에 대한 버전업을 했습니다. beta02-> beta06

탭 간 이동 시 화면이 overlap 되는 현상이 있습니다.
이 이슈는 jetpack compose navigation 2.8.0-beta03까지 나오는 버그이고,
현재 드로이드 나이츠 앱에서는 beta02 버전을 사용하고 있어서 생기는 문제입니다.
동일한 버그에 대한 제기된 이슈 내용도 있습니다.

navigation release note를 보시면 beta04 버전에 predictive back gesture cancellation(예측 백 제스처 취소)로 인한 애니메이션에 발생한 문제를 해결한 내용이 있는데요.
스크린샷 2024-08-16 오후 1 06 40

릴리즈 노트 상으로는 제기한 버그와 다른 수정사항이지만, 직접 확인 결과 화면이 overlap 되는 현상이 해결되어 문의를 남겼고 predictive back gesture cancellation(예측 백 제스처 취소)로 인한 애니메이션에 발생한 문제와 동일한 문제로 판단되어 함께 수정되었다는 답변을 받았습니다.
스크린샷 2024-08-16 오후 12 12 17

compose navigation의 현재 최신 버전은 beta07이지만, 해당 버전은 compile sdk 버전이 35이상일 경우에 사용가능하기에 beta06으로 버전업하였습니다.

Links

Screenshot

Before After
Before.webm
After.webm

Copy link

Snapshot diff report vs base branch: main

File name Image
KnightsAppTest.check
StartupShot_compare.
png
KnightsAppTest.check
MediumTabletLaunchSh
ot_compare.png

Copy link

Test Results

20 tests   20 ✅  20s ⏱️
11 suites   0 💤
11 files     0 ❌

Results for commit d3da5ac.

@Songgyubin
Copy link
Author

compose navigation 애니메이션에 관한 수정 코드 내용입니다.
https://android-review.googlesource.com/c/platform/frameworks/support/+/3138255/5/navigation/navigation-compose/src/main/java/androidx/navigation/compose/NavHost.kt#34

val transition = rememberTransition(transitionState, label = "entry")

        if (inPredictiveBack) {
            LaunchedEffect(progress) {
                val previousEntry = currentBackStack[currentBackStack.size - 2]
                transitionState.seekTo(progress, previousEntry)
            }
        } else {
            LaunchedEffect(backStackEntry) {
                // This ensures we don't animate after the back gesture is cancelled and we
                // are already on the current state
                if (transitionState.currentState != backStackEntry) {
                    transitionState.animateTo(backStackEntry)
                } else {
                    // convert from nanoseconds to milliseconds
                    val totalDuration = transition.totalDurationNanos / 1000000
                    // When the predictive back gesture is cancel, we need to manually animate
                    // the SeekableTransitionState from where it left off, to zero and then
                    // snapTo the final position.
                    animate(
                        transitionState.fraction,
                        0f,
                        animationSpec = tween((transitionState.fraction * totalDuration).toInt())
                    ) { value, _ ->
                        [email protected] {
                            if (value > 0) {
                                // Seek the original transition back to the currentState
                                transitionState.seekTo(value)
                            }
                            if (value == 0f) {
                                // Once we animate to the start, we need to snap to the right state.
                                transitionState.snapTo(backStackEntry)
                            }
                        }
                    }
                }
            }
        }

@Songgyubin Songgyubin closed this Aug 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant