I'm using a shared element transition to go from one activity to another activity. I have a parent layout with a few children and I'm trying to animate them to the detail view using the shared element transitions. I've pushed up a sample repo here on github.
The transition works just fine on the Android emulator, my Pixel, and Samsung phones that haven't been updated to Nougat 7.0. On the Samsung device running 7.0, the image and the text inside the container don't animate properly. In my sample app, the top container is the one that has the issue on Samsung devices and the bottom is how it should look all the time. Here is how it looks on a Samsung device.
Looking at the code, you might ask why not just go with the second solution of only animating the container and in turn get the internals animated with it. I've seen that with some layouts, Android just doesn't animate the internals correctly, sometimes not even at all. So I've resorted to specifying each view that's going to be a shared element transition. Has anyone else ran into this issue?