Fixed
Status Update
Comments
il...@google.com <il...@google.com>
il...@google.com <il...@google.com>
ap...@google.com <ap...@google.com> #2
Any update on this? The issue makes really hard to use AVD even completely unusable sometimes.
I enabled the "show taps" feature on developer options. I can see that touching is stuck sometimes. Multiple finger touch solves it by resetting but not always.
I enabled the "show taps" feature on developer options. I can see that touching is stuck sometimes. Multiple finger touch solves it by resetting but not always.
il...@google.com <il...@google.com> #3
Hi mustafiran@, thanks for reporting this issue. This bug has been fixed by this
Description
Version used:android.arch.navigation:navigation-ui:1.0.0-beta01
Devices/Android versions reproduced on: any
Navigation to a fragment destination with SingleTop option breaks back stack. The issue was introduced in beta01 update in commit 45818ac652ba3a43b07f980cf22ab78be886d81d by Ian Lake <ilake@google.com> on Wed Jan 30 10:45:37 2019 -0800.
I believe that the root of the issue is unnecessary "+ 1" in line 25 of androidx.navigation.fragment.FragmentNavigator.java:
ft.addToBackStack(generateBackStackName(mBackStack.size() + 1, destId));
When navigation is performed in SingleTop mode, the last fragment is being replaced making back stack 1 frame smaller.