Android 12 では SplashScreen
API が追加されました。これにより、すべてのアプリで新しいアプリ起動アニメーションの利用が可能になります。これには、起動時のアプリ行きの動き、アプリアイコンを表示するスプラッシュ画面、アプリ本体への移行が含まれます。

新しいエクスペリエンスでは、アプリを起動するたびに標準のデザイン要素が提供されますが、カスタマイズもできるため、アプリ独自のブランディングを維持できます。
スプラッシュ画面の仕組み
アプリのプロセスが実行されていないとき(コールド スタート)またはアクティビティが作成されていないとき(ウォーム スタート)にユーザーがアプリを起動すると、次のイベントが発生します(ホットスタート時にスプラッシュ画面が表示されることはありません)。
定義したテーマとアニメーションを使用してスプラッシュ画面が表示されます。
アプリの準備が整うと、スプラッシュ画面が閉じてアプリが表示されます。
アニメーションの要素とメカニズム
アニメーションの要素は、Android マニフェストの XML リソース ファイルで定義します。ライトモードとダークモードのバージョンがあります。
ウィンドウ背景、アニメーション アプリアイコン、アイコン背景で構成されます。

これらの要素については、次の点を考慮してください。
アプリアイコン(1)はベクター型ドローアブルにする必要があり、静止画でもアニメーションでもかまいません。アニメーションの継続時間に制限はありませんが、1,000 ミリ秒以下にすることをおすすめします。デフォルトでは、ランチャー アイコンが使用されます。
アイコン背景(2)は省略可能です。アイコンとウィンドウ背景のコントラストを高める場合に便利です。アダプティブ アイコンを使用する場合、ウィンドウ背景とのコントラストが十分あれば、背景が表示されます。
アダプティブ アイコンと同様、フォアグラウンドの 1/3 がマスクされます(3)。
ウィンドウ背景(4)は、不透明な単色で構成されています。ウィンドウ背景が設定され、無地の色である場合、属性が設定されていなければ、デフォルトで使用されます。
スプラッシュ画面のアニメーションは、開始と終了のアニメーションで構成されています。
開始アニメーションは、システムビューからスプラッシュ画面までです。これはシステムによって制御され、カスタマイズできません。
終了アニメーションは、スプラッシュ画面を非表示にするアニメーションです。カスタマイズする場合は、
SplashScreenView
とそのアイコンにアクセスし、変換、不透明度、色を設定して任意のアニメーションを実行できます。その場合、アニメーションが終了したらスプラッシュ画面を手動で削除する必要があります。
アプリのスプラッシュ画面をカスタマイズする
SplashScreen
はデフォルトで、テーマの windowBackground
(単色の場合)と、ランチャー アイコンを使用します。スプラッシュ画面のカスタマイズは、アプリテーマに属性を追加して行います。
アプリのスプラッシュ画面は、次のいずれかの方法でカスタマイズできます。
テーマ属性を設定して外観を変更する
長時間表示する
スプラッシュ画面を閉じるためのアニメーションをカスタマイズする
スプラッシュ画面のテーマを設定して外観を変更する
アプリのスプラッシュ画面をカスタマイズするには、Activity テーマに以下の属性を指定します。android:windowBackground
のような属性を使用する以前のスプラッシュ画面実装がある場合は、Android 12 用の代替リソース ファイルを提供することをご検討ください。
背景を特定の単色で塗りつぶすには、
windowSplashScreenBackground
を使用します。<item name="android:windowSplashScreenBackground">@color/...</item>
開始ウィンドウの中央にあるアイコンを置き換えるには、
windowSplashScreenAnimatedIcon
を使用します。AnimationDrawable
とAnimatedVectorDrawable
でオブジェクトのアニメーション化と描画が可能な場合、開始ウィンドウを表示しつつアニメーションを再生することもできます。<item name="android:windowSplashScreenAnimatedIcon">@drawable/...</item>
スプラッシュ画面が閉じるまでの表示時間を設定するには、
windowSplashScreenAnimationDuration
を使用します。最長時間は 1,000 ミリ秒です。スプラッシュ画面のアイコンの背後に背景を設定するには、
windowSplashScreenIconBackground
を使用します。これは、ウィンドウの背景とアイコンのコントラストが十分でない場合に便利です。<item name=”android:windowSplashScreenIconBackground”>@color/...</item>
必要に応じて
windowSplashScreenBrandingImage
を使用すると、スプラッシュ画面の下部に表示する画像を設定できます。デザイン ガイドラインでは、ブランディング画像の使用は推奨されていません。<item name=”android:windowSplashScreenBrandingImage”>@drawable/...</item>
スプラッシュ画面を長時間表示する
スプラッシュ画面は、アプリが最初のフレームを描画するとすぐに閉じます。アプリ内のテーマ設定など、少量のデータをローカル ディスクから非同期で読み込む必要がある場合は、ViewTreeObserver.OnPreDrawListener
を使用して、最初のフレームを描画しないようアプリを一時停止します。
Kotlin
// Create a new event for the activity. override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) // Set the layout for the content view. setContentView(R.layout.main_activity) // Set up an OnPreDrawListener to the root view. val content: View = findViewById(android.R.id.content) content.viewTreeObserver.addOnPreDrawListener( object : ViewTreeObserver.OnPreDrawListener { override fun onPreDraw(): Boolean { // Check if the initial data is ready. return if (viewModel.isReady) { // The content is ready; start drawing. content.viewTreeObserver.removeOnPreDrawListener(this) true } else { // The content is not ready; suspend. false } } } ) }
Java
// Create a new event for the activity. @Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Set the layout for the content view. setContentView(R.layout.main_activity); // Set up an OnPreDrawListener to the root view. final View content = findViewById(android.R.id.content); content.getViewTreeObserver().addOnPreDrawListener( new ViewTreeObserver.OnPreDrawListener() { @Override public boolean onPreDraw() { // Check if the initial data is ready. if (mViewModel.isReady()) { // The content is ready; start drawing. content.getViewTreeObserver().removeOnPreDrawListener(this); return true; } else { // The content is not ready; suspend. return false; } } }); }
スプラッシュ画面を閉じるためのアニメーションをカスタマイズする
Activity.getSplashScreen
を使用すると、スプラッシュ画面のアニメーションをさらにカスタマイズできます。
Kotlin
override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) // ... // Add a callback that's called when the splash screen is animating to // the app content. splashScreen.setOnExitAnimationListener { splashScreenView -> // Create your custom animation. val slideUp = ObjectAnimator.ofFloat( splashScreenView, View.TRANSLATION_Y, 0f, -splashScreenView.height.toFloat() ) slideUp.interpolator = AnticipateInterpolator() slideUp.duration = 200L // Call SplashScreenView.remove at the end of your custom animation. slideUp.doOnEnd { splashScreenView.remove() } // Run your animation. slideUp.start() } }
Java
@Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); // ... // Add a callback that's called when the splash screen is animating to // the app content. getSplashScreen().setOnExitAnimationListener(splashScreenView -> { final ObjectAnimator slideUp = ObjectAnimator.ofFloat( splashScreenView, View.TRANSLATION_Y, 0f, -splashScreenView.getHeight() ); slideUp.setInterpolator(new AnticipateInterpolator()); slideUp.setDuration(200L); // Call SplashScreenView.remove at the end of your custom animation. slideUp.addListener(new AnimatorListenerAdapter() { @Override public void onAnimationEnd(Animator animation) { splashScreenView.remove(); } }); // Run your animation. slideUp.start(); }); }
このコールバックの開始時、スプラッシュ画面のアニメーション化ベクター型ドローアブルは開始しています。アプリの起動にかかる時間によっては、ドローアブルがアニメーションの中ほどにある場合があります。SplashScreenView.getIconAnimationStartMillis
を使用して、アニメーションがいつ開始されたのかを把握します。アイコン アニメーションの残りの時間は次のように計算できます。
Kotlin
// Get the duration of the animated vector drawable. val animationDuration = splashScreenView.iconAnimationDurationMillis // Get the start time of the animation. val animationStart = splashScreenView.iconAnimationDurationMillis // Calculate the remaining duration of the animation. val remainingDuration = ( animationDuration - (SystemClock.uptimeMillis() - animationStart) ).coerceAtLeast(0L)
Java
// Get the duration of the animated vector drawable. long animationDuration = splashScreenView.getIconAnimationDurationMillis(); // Get the start time of the animation. long animationStart = splashScreenView.getIconAnimationStartMillis(); // Calculate the remaining duration of the animation. long remainingDuration = Math.max( animationDuration - (SystemClock.uptimeMillis() - animationStart), 0L );