在 Android 应用中添加启动画面

A graphic outlining the launch flow of an app including a splash screen

启动画面(也称为启动屏幕)在 Android 应用加载时提供简单的初始体验。它们为你的应用程序设定了舞台,同时为应用引擎加载和应用程序初始化留出时间。

概述

在 Android 中,你可以控制两个独立的屏幕:在 Android 应用初始化时显示的启动屏幕和在 Flutter 体验初始化时显示的启动画面

初始化应用

每个 Android 应用都需要初始化时间,在此期间,操作系统会设置应用的进程。Android 提供了 启动画面 的概念,以便在应用初始化时显示 Drawable

Drawable 是 Android 图形。要了解如何在 Android Studio 中将 Drawable 添加到 Flutter 项目,请查看 Android 开发者文档中的 将可绘制资源导入到您的项目

默认的 Flutter 项目模板包括启动主题和启动背景的定义。您可以通过编辑 styles.xml 来自定义它,您可以在其中定义一个主题,其 windowBackground 设置为应显示为启动画面的 Drawable

<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
    <item name="android:windowBackground">@drawable/launch_background</item>
</style>

此外,styles.xml 定义了一个普通主题,以便在启动画面消失后应用于 FlutterActivity。普通主题背景仅在启动画面消失后、方向更改和 Activity 恢复期间显示很短的时间。因此,建议普通主题使用与 Flutter UI 的主要背景颜色相似的纯色背景。

<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
    <item name="android:windowBackground">@drawable/normal_background</item>
</style>

在 AndroidManifest.xml 中设置 FlutterActivity

AndroidManifest.xml 中,将 FlutterActivitytheme 设置为启动主题。然后,将元数据元素添加到所需的 FlutterActivity,以指示 Flutter 在适当的时候从启动主题切换到正常主题。

<activity
    android:name=".MyActivity"
    android:theme="@style/LaunchTheme"
    // ...
    >
    <meta-data
        android:name="io.flutter.embedding.android.NormalTheme"
        android:resource="@style/NormalTheme"
        />
    <intent-filter>
        <action android:name="android.intent.action.MAIN"/>
        <category android:name="android.intent.category.LAUNCHER"/>
    </intent-filter>
</activity>

现在,在应用初始化时,Android 应用会显示所需的启动屏幕。

Android 12

要在 Android 12 上配置启动屏幕,请查看 Android 启动屏幕

从 Android 12 开始,你必须在 styles.xml 文件中使用新的启动屏幕 API。考虑为 Android 12 及更高版本创建备用资源文件。还要确保背景图片符合图标指南;请查看 Android 启动屏幕 了解更多详情。

<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
    <item name="android:windowSplashScreenBackground">@color/bgColor</item>
    <item name="android:windowSplashScreenAnimatedIcon">@drawable/launch_background</item>
</style>

确保 io.flutter.embedding.android.SplashScreenDrawable 在清单中设置,并且 provideSplashScreen 实现,因为这些 API 已弃用。这样做会导致在启动应用时 Android 启动屏幕平滑地淡入 Flutter,并且应用可能会崩溃。

一些应用可能希望在 Flutter 中继续显示 Android 启动屏幕的最后一帧。例如,这会在 Dart 中继续进行其他加载时保留单帧的错觉。要实现此目的,以下 Android API 可能会有所帮助

MainActivity.java
import android.os.Build;
import android.os.Bundle;
import android.window.SplashScreenView;
import androidx.core.view.WindowCompat;
import io.flutter.embedding.android.FlutterActivity;

public class MainActivity extends FlutterActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // Aligns the Flutter view vertically with the window.
        WindowCompat.setDecorFitsSystemWindows(getWindow(), false);

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
            // Disable the Android splash screen fade out animation to avoid
            // a flicker before the similar frame is drawn in Flutter.
            getSplashScreen()
                .setOnExitAnimationListener(
                    (SplashScreenView splashScreenView) -> {
                        splashScreenView.remove();
                    });
        }

        super.onCreate(savedInstanceState);
    }
}
MainActivity.kt
import android.os.Build
import android.os.Bundle
import androidx.core.view.WindowCompat
import io.flutter.embedding.android.FlutterActivity

class MainActivity : FlutterActivity() {
  override fun onCreate(savedInstanceState: Bundle?) {
    // Aligns the Flutter view vertically with the window.
    WindowCompat.setDecorFitsSystemWindows(getWindow(), false)

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
      // Disable the Android splash screen fade out animation to avoid
      // a flicker before the similar frame is drawn in Flutter.
      splashScreen.setOnExitAnimationListener { splashScreenView -> splashScreenView.remove() }
    }

    super.onCreate(savedInstanceState)
  }
}

然后,你可以在 Flutter 中重新实现第一帧,在屏幕上的相同位置显示 Android 启动屏幕的元素。有关此示例,请查看 Android 启动屏幕示例应用