activity_splash.xml 834 B

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. xmlns:tools="http://schemas.android.com/tools"
  6. android:id="@+id/frame_layout"
  7. android:layout_width="match_parent"
  8. android:layout_height="match_parent"
  9. >
  10. <android.support.constraint.ConstraintLayout
  11. android:id="@+id/container_main"
  12. android:layout_width="match_parent"
  13. android:layout_height="match_parent"
  14. android:background="@android:color/transparent"
  15. android:orientation="vertical"
  16. />
  17. <ImageView
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:layout_gravity="center|bottom"
  21. android:layout_marginBottom="45dp"
  22. app:srcCompat="@drawable/logo_lifeplus"
  23. />
  24. </FrameLayout>