activity_splash.xml 876 B

123456789101112131415161718192021222324252627
  1. <FrameLayout 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="#FFFFFF"
  6. tools:context="com.app.gokitchen.SplashActivity" >
  7. <!--
  8. The primary full-screen view. This can be replaced with whatever view
  9. is needed to present your content, e.g. VideoView, SurfaceView,
  10. TextureView, etc.
  11. -->
  12. <ImageView
  13. android:layout_width="match_parent"
  14. android:layout_height="match_parent"
  15. android:contentDescription="@string/app_name"
  16. android:scaleType="center"
  17. android:src="@drawable/splash_logo" />
  18. <!--
  19. This FrameLayout insets its children based on system windows using
  20. android:fitsSystemWindows.
  21. -->
  22. </FrameLayout>