| <?xml version="1.0" encoding="utf-8"?> | 
| <MotionScene  | 
|     xmlns:android="http://schemas.android.com/apk/res/android" | 
|     xmlns:motion="http://schemas.android.com/apk/res-auto"> | 
|   | 
|     <ConstraintSet android:id="@+id/start"> | 
|         <Constraint | 
|             android:id="@+id/imageView2" | 
|             android:layout_width="150dp" | 
|             android:layout_height="150dp" | 
|             motion:layout_constraintBottom_toBottomOf="parent" | 
|             android:layout_marginBottom="52dp" | 
|             android:layout_marginStart="36dp" | 
|             motion:layout_constraintStart_toStartOf="parent" | 
|             motion:pathMotionArc="startVertical" /> | 
|     </ConstraintSet> | 
|   | 
|     <ConstraintSet android:id="@+id/end"> | 
|   | 
|         <Constraint | 
|             android:id="@+id/imageView2" | 
|             android:layout_width="150dp" | 
|             android:layout_height="150dp" | 
|             motion:layout_constraintTop_toBottomOf="@+id/cl_title" | 
|            motion:layout_constraintEnd_toEndOf="parent" | 
|             motion:layout_constraintStart_toStartOf="parent" | 
|             motion:layout_constraintBottom_toBottomOf="parent" | 
|             motion:layout_constraintVertical_bias="0.0" | 
|             motion:layout_constraintHorizontal_bias="1.0" /> | 
|     </ConstraintSet> | 
|     <Transition | 
|         motion:constraintSetStart="@+id/start" | 
|         motion:constraintSetEnd="@+id/end" | 
|         motion:motionInterpolator="cubic(0,0,1,1)" | 
|         motion:duration="2000"> | 
|         <OnClick motion:targetId="@+id/imageView2"/> | 
|     </Transition> | 
| </MotionScene> |