I work in an application similar to Google Calendar ...
- There are events and when the user clicks one, the event grows and is converted into a detailed view.
- General views (events) are inside the ScrollView, so itβs for some that these views may be partially visible.
- The problem is that when one partially visible view is selected, the full view appears first and then the animation is performed.
Here is the capture of the problem: 
What can I do to make the transition only the visible part of the view for its animation?
This is my transition:
<changeBounds xmlns:android="http://schemas.android.com/apk/res/android"> <arcMotion android:minimumHorizontalAngle="15" android:minimumVerticalAngle="0" android:maximumAngle="90"/> </changeBounds>
android android-transitions shared-element-transition
Oscar MΓ©ndez
source share