I'm trying to set pivotX and pivotY in the motion.
<Constraint android:id="@id/favChatRecyclerView"
android:layout_width="match_parent"
android:layout_height="100dp"
android:alpha="1"
android:pivotY="0.0"
android:pivotX="0.0"
android:scaleY="1"
android:scaleX="1"/>
And in the end scene:
<Constraint android:id="@id/favChatRecyclerView"
android:layout_width="match_parent"
android:layout_height="100dp"
android:alpha="1"
android:pivotY="0.0"
android:pivotX="0.0"
android:scaleY="0"
android:scaleX="0"/>
But it looks like pivot point doesn't have any effect. I'm still getting scale animation with pivot in the center of view. Is there any way how to fix it?