【Kotlin 初心者】スプラッシュ画面の作り方
Kotliでスプラッシュ画面の作り方について
そもそもスプラッシュとは?
アプリの立ち上げる刹那に表示される画像のことです
イメージ
こちらのスプラッシュは私が作ったLupriというアプリのスプラッシュになります。
実装は非常に簡単です
実装方法
<activity android:name="MainActivity"
// themeを追加する
android:theme="@style/AppTheme.Splash">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<resources>
<style name="AppTheme.Splash" parent="Theme.AppCompat.DayNight.NoActionBar">
// あらかじめdrawableに表示するスプラッシュ画像を用意する
<item name="android:windowBackground">@drawable/splash</item>
</style>
</resources>
Author And Source
この問題について(【Kotlin 初心者】スプラッシュ画面の作り方), 我々は、より多くの情報をここで見つけました https://qiita.com/naoyukitsuruo/items/fec46f9bfa325a391c1b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .