Fixed
Status Update
Comments
ma...@google.com <ma...@google.com> #2
can you confirm repro?
ap...@google.com <ap...@google.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));
Description
Per offline discussion, Matvei and I agreed that throwing
CancellationException
inswipeable
when the suspendanimateTo
is canceled would be more consistent with developer expectation, therefore less error-prone.Giving this issue a high-priority since it involves API change.
Matvei, could you please remove
Interrupted
fromAnimationEndReason
API as you implement the proposed cancellation handling? :)