Я хочу разместить ie анимацию в верхней части экрана, поэтому я поместил ее в относительную компоновку
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:id="@+id/splash_animation_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:gravity="top"
android:orientation="vertical">
<com.airbnb.lottie.LottieAnimationView
android:id="@+id/splash_animation"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:lottie_autoPlay="true"
app:lottie_fileName="splash_screen.json" />
</LinearLayout>
<ImageView
android:id="@+id/splash_appName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_logo"
android:visibility="gone"
android:layout_below="@id/splash_animation_view"
tools:visibility="visible" />
</RelativeLayout>
Но она не работает. Моя анимация всегда в центре экрана. Я также пытался использовать Linear или Constraint - тот же результат. Как это исправить?