Skip to content

Instantly share code, notes, and snippets.

@AbedElazizShe
Created December 7, 2020 16:19
Show Gist options
  • Save AbedElazizShe/12170c76af0fb9ea9dcbd367e4a4de4e to your computer and use it in GitHub Desktop.
Save AbedElazizShe/12170c76af0fb9ea9dcbd367e4a4de4e to your computer and use it in GitHub Desktop.
splash view layout
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.airbnb.lottie.LottieAnimationView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:lottie_autoPlay="true"
app:lottie_rawRes="@raw/splash_screen"
app:lottie_loop="false"
app:lottie_speed="1.00" />
</androidx.constraintlayout.widget.ConstraintLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment