I've a view like this:
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@+id/...">
<ImageView
android:id="@+id/.."
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@android:color/black"
android:src="@drawable/.."
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
</android.support.constraint.ConstraintLayout>
I want to create simple and clean animation to slide for my ImageView from the very bottom (container) with changing alpha (fade-in) to very top of container.
I found alot of solution in stackoverflow when you specify specific height of slide. Is there a simple solution as I need from bottom to top?