123456789101112131415161718192021222324252627 |
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#FFFFFF"
- tools:context="com.app.gokitchen.SplashActivity" >
- <!--
- The primary full-screen view. This can be replaced with whatever view
- is needed to present your content, e.g. VideoView, SurfaceView,
- TextureView, etc.
- -->
- <ImageView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:contentDescription="@string/app_name"
- android:scaleType="center"
- android:src="@drawable/splash_logo" />
- <!--
- This FrameLayout insets its children based on system windows using
- android:fitsSystemWindows.
- -->
- </FrameLayout>
|