Status Update
Comments
al...@google.com <al...@google.com>
jb...@google.com <jb...@google.com> #2
Hi, thanks for reporting this. Please update this ticket with a reproducible code/sample so we can better investigate the issue.
Thanks!
sq...@gmail.com <sq...@gmail.com> #3
The endless joy of support tracker ....
So I'm actually asking a question ... So instead of insta closing without reading anyway to have someone read and answer?
What / Where are the settings that controls the velocity calculations.
Compose animations are tied to Android dev settings animation scale. What is the equivalent here.
ap...@google.com <ap...@google.com> #4
Not all compose animations are tied to Android developer settings.
Fling animations in lists are no longer controlled by the Settings menu and cannot be overriden, so that shouldn't be source of the problem you're seeing. This has been solved in
The velocity calculation for lists is done at the draggable level and are also transparent to developers, so you cannot control how these are calculated.
A sample/reproducible code is required if I was to move forward with investigating this issue.
jb...@google.com <jb...@google.com> #5
I don't have a repro and can't build one, the app is in prod and working for thousands of other users.
Is there any other changes in Compose 1.4 that could impact the velocity calculation?
am...@gmail.com <am...@gmail.com> #6
There weren't new changes on how velocity calculation is determined AFAIK.
I don't know which components you're using (Jetpack Compose component(s) used: Most of them) so I can't narrow down the possibilities here.
Description
Component used: AppCompatActivity
Version used: 1.3.0
Devices/Android versions reproduced on: Emulator API 28, 30, Samsung Galaxy S21 API 30, most likely all versions are affected
Each time I change the orientation of my screen, the saved instance bundle size increases by 3 elements in two different ArrayLists.
Here is the minimal example that will illustrate the issue. The additional code in the
onSaveInstanceState
is only there to display the issue.Here is the full output when rotated 6 times:https://pastebin.com/yfE04Fmc
Mini-extract (2 rotations):
As you can see, each time the screen is rotated, 3 elements are added to these two entries. After rotating the screen for a while, the instance state becomes significantly bigger for no apparent reason.
I traced it back to (but can be wrong)
ActivityResultRegistry
, and it seems that something in the support library doesn't clean up the state with the registry.I also tried simply putting the app in the background, which triggers the
onSaveInstanceState
but that did not increase the bundle size. It looks like the activity must be re-created.When I inherit from
Activity
instead, the issue disappears.