Status Update
Comments
il...@google.com <il...@google.com> #2
Information redacted by Android Beta Feedback.
yo...@gmail.com <yo...@gmail.com> #3
il...@google.com <il...@google.com>
jb...@google.com <jb...@google.com> #4
What
Feature request
Update- This is affecting ability to add attachments to Gmail. Attempted to attach a photo to a new email (Compose, select 'attach') and it disappears and am getting an error saying Gmail isn't responding this time.
Where
Build and device data
- Build Number: google/cheetah_beta/cheetah:VanillaIceCream/AP31.240426.022/11822335:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
Debugging information
Google Play services
com.google.android.gms
Version 242013038 (24.20.13 (190400-633713831))
System App (Updated)
Android System WebView
com.google.android.webview
Version 647800842 (126.0.6478.8)
System App (Updated)
Network operator: T-Mobile
SIM operator: T-Mobile
Filed by Android Beta Feedback. Version (Updated): 2.42-betterbug.external_20240410_RC03 (DOGFOOD)
To learn more about our feedback process, please visit
Description
Version used: 2.4.1
Devices/Android versions reproduced on: Emulator on Android SDK 30
I have a use case where I have a fragment from which I want to open another navigation graph containing multiple fragments typically to do a task with multiple steps, and when I reach the last one I want to go back to the previous fragment outside this task graph without recreating it. Opening the first step fragment uses an animation that makes it enter from bottom to top, then on each steps fragment an animation to enter from the right edge, then close the task from the last fragment with an animation from top to bottom.
So I add an action on my last fragment in the task graph with popUpTo set to either the fragment I want to go back to (popUpToInclusive = false), or the current navigation graph itself (popUpToInclusive = true/false have the same result) and I set popExitAnim too to indicate which animation should be used when popping this fragment with this action.
In this situation the popExitAnim is just ignored, and the one defined on the action used navigate originally to this fragment is used. I think the problem resides on not creating a new fragment when popping back (not sure), and I would expect to be able to specify the popExitAnim.