You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.5 KiB
39 lines
1.5 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<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="#0099cc"
|
|
tools:context=".ui.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. -->
|
|
<TextView
|
|
android:id="@+id/fullscreen_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:keepScreenOn="true"
|
|
android:text="@string/welcome"
|
|
android:textColor="#33b5e5"
|
|
android:textSize="50sp"
|
|
android:textStyle="bold" />
|
|
<!-- This FrameLayout insets its children based on system windows using
|
|
android:fitsSystemWindows. -->
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fitsSystemWindows="true">
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/splash"
|
|
android:gravity="top"
|
|
|
|
android:keepScreenOn="true"
|
|
android:text="@string/welcome"
|
|
android:textSize="50dp"
|
|
android:textStyle="bold"
|
|
/>
|
|
</FrameLayout>
|
|
</FrameLayout> |