Android 启动页全屏

解决 Android 开屏页显示之前出现系统默认页面,黑屏或者白屏

说人话,就是在加载启动页的时候,会多显示一个系统默认的页面,不属于启动页的内容。

处理方式就是为 启动页单独加一个 theme:

添加 theme

    <style name="Theme.Splash" parent="Theme.CoreKtx">
        <item name="android:windowIsTranslucent">true</item>
    </style>
image.png

配置 Activity

        <activity
            android:name=".feature.SplashActivity"
            android:screenOrientation="portrait"
            android:theme="@style/Theme.Splash"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容