如何在不进入 Mainactivity 的情况下先显示启动画面

How can i show my splash screen first without making in Mainacitivity

我制作了启动画面 class 名称 Splash.class 。我没有在 mainacitivity 中做,所以我怎么能在第一个屏幕(打开屏幕或第一个屏幕)显示这个

清单

<application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.LoginApp">
        <activity
            android:name=".second"
            android:exported="true"></activity>
        <activity
            android:name=".MainActivity"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

        </activity>
    </application>

</manifest>

像这样更改清单

<application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.LoginApp">
        <activity
            android:name=".second"
            android:exported="true"></activity>
        <activity
            android:name="com.your.package.Splash" //put yout class here
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

        </activity>
    </application>

</manifest>

第一次你的 android 将 运行 activity 分类为 LAUNCHER,所以将 category.LAUNCHER 中的 activity class 更改为你的 class (Splash.java)

为了首先启动初始屏幕,您必须使用 <intent-filter> 指定意图类型。因此,将以下属性添加到 AndroidManifest.xml 文件中的 activity 将使它首先启动:

<intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

最终,您的清单将如下所示:

<application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.LoginApp">
        <activity
            android:name=".second"
            android:exported="true"></activity>
        <activity
            android:name=".MainActivity"
            android:exported="true" />
        <activity
            android:name=".Splash"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
       
    </application>

</manifest>