Fixed
Status Update
Comments
il...@google.com <il...@google.com>
tj...@gmail.com <tj...@gmail.com> #3
Yes this occurs when having duplicates in the list. I've been told there's an internal bug already opened on this.
listAdapter.submitList(Arrays.asList("one", null));
listAdapter.submitList(Arrays.asList("one", null, "two", null));
listAdapter.submitList(Arrays.asList("one", null));
listAdapter.submitList(Arrays.asList("one", null, "two", null));
jb...@google.com <jb...@google.com> #4
thanks, please update this issue when internal bug gets resolved
ap...@google.com <ap...@google.com> #5
any news?
jb...@google.com <jb...@google.com> #8
Project: platform/frameworks/support
Branch: androidx-master-dev
commit a013a90ce233809bb659f5d978d6250826f35c0c
Author: Yigit Boyar <yboyar@google.com>
Date: Wed Mar 11 15:11:38 2020
Benchmarks for diff util
This CL adds benchmarks for DiffUtil which is good to have
before we make changes to handle duplicate items properly
Bug: 123376278
Test: DiffBenchmark
Change-Id: I4b23c75caa47aaeddf8262cc66154f69589db823
A recyclerview/recyclerview-benchmark/src/androidTest/java/androidx/recyclerview/benchmark/DiffBenchmark.kt
https://android-review.googlesource.com/1255508
Branch: androidx-master-dev
commit a013a90ce233809bb659f5d978d6250826f35c0c
Author: Yigit Boyar <yboyar@google.com>
Date: Wed Mar 11 15:11:38 2020
Benchmarks for diff util
This CL adds benchmarks for DiffUtil which is good to have
before we make changes to handle duplicate items properly
Bug: 123376278
Test: DiffBenchmark
Change-Id: I4b23c75caa47aaeddf8262cc66154f69589db823
A recyclerview/recyclerview-benchmark/src/androidTest/java/androidx/recyclerview/benchmark/DiffBenchmark.kt
tj...@gmail.com <tj...@gmail.com> #9
thanks. Which release will be first with this fix included?
jb...@google.com <jb...@google.com> #10
sorry it missed alpha 2 but should be out in alpha 3 of recyclerview.
here is the CL to follow:
once it is merged you can use a build from CI but keep in mind that it has latest changes in RV.
Description
Component used: Fragment Version used: 1.3.0-alpha08 Devices/Android versions reproduced on: Emulator / Pixel 3
If this is a bug in the library, we would appreciate if you could attach:
I have a sequence of 3 Fragments that use shared element transitions, and use
postponeEnterTransition()
on all of them.Everything is great when I go from Fragments 1 -> 2 -> 3. However, when I pop from 3 -> 2, the onCreateView and onViewCreated methods are skipped. onStart and onResume are called however. What's worse, after popping, I see the old view instance for Fragment 2 that should have been destroyed when I move to Fragment 3. OnDestroyView is also never called for Fragment 2 at all.
Repository with reproducing code:https://github.com/tunjid/Android-Extensions/tree/feature/fragment-1.3.0
Fragment 1 -> DoggoListFragment Fragment 2 -> DoggoPagerFragment Fragment 3 -> AdoptDoggoFragment