splash_screen.xml 565 B

12345678910111213141516
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="#0099cc"
  6. tools:context=".LumberyardActivity">
  7. <ImageView
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. android:id="@+id/splash_image"
  11. android:background="#414141"
  12. android:src="@drawable/app_splash"
  13. android:scaleType="centerCrop" />
  14. </RelativeLayout>