43 lines
1.5 KiB
XML
43 lines
1.5 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<!--
|
||
|
|
启动屏 layout(SplashScreen API 12+ 用)
|
||
|
|
- 背景 = 木色
|
||
|
|
- 中心 = logo + app 名 + 副标题
|
||
|
|
- 不依赖任何外部依赖,纯原生
|
||
|
|
-->
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:gravity="center"
|
||
|
|
android:background="@color/splash_background">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/splash_logo"
|
||
|
|
android:layout_width="@dimen/splash_logo_size"
|
||
|
|
android:layout_height="@dimen/splash_logo_size"
|
||
|
|
android:src="@drawable/ic_splash_logo"
|
||
|
|
android:contentDescription="@string/app_name"
|
||
|
|
android:layout_marginBottom="24dp" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/splash_title"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/app_name"
|
||
|
|
android:textColor="@color/splash_letter"
|
||
|
|
android:textSize="40sp"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:fontFamily="sans-serif" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/splash_subtitle"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/splash_subtitle"
|
||
|
|
android:textColor="@color/splash_subtitle"
|
||
|
|
android:textSize="16sp"
|
||
|
|
android:layout_marginTop="8dp"
|
||
|
|
android:fontFamily="sans-serif" />
|
||
|
|
|
||
|
|
</LinearLayout>
|