Assigned
Status Update
Comments
[Deleted User] <[Deleted User]> #2
Can you attach / share a project that reproduces the issue?
ho...@google.com <ho...@google.com> #3
Now i sure this is viewpager2's bug.
because just occur recyclerview inside viewpager2 with constraintlayout, if paging3 use Independently with viewpage2 it's not problem.
because just occur recyclerview inside viewpager2 with constraintlayout, if paging3 use Independently with viewpage2 it's not problem.
Description
By default, MotionLayout will ignore layout requests during transitions for performance reasons. It does seem to call `layout` after the transition but it doesn't call `measure` which unfortunately is required for `TextView` to work (it lays out the text during measure, not during layout) so text views can be broken if they change the size.
I've attached a sample project that demonstrates the issue. Press the button and notice how the text "Hello\nWorld!" isn't displayed properly during the transition.