启动器 activity setContentView 延迟

Launcher activity setContentView delay

我创建了一个简单的应用程序,它带有显示 1 秒的启动画面。启动画面几乎是红色的。但我注意到,当我首先启动我的应用程序约 0.3 秒时出现白屏,然后出现我的启动画面。是否可以删除此白屏或将其设置为预定义的红色?我在 android 5.0 的 nexus 4 上对其进行了测试,我的 Splash activity 的实现非常简单,没有什么可以延迟 onCreate():

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_launcher);
    waitTask = new WaitTask();
    waitTask.execute();
}

private class WaitTask extends AsyncTask<Void, Integer, Void> {

    @Override
    protected Void doInBackground(Void... params) {
        try {
            TimeUnit.MILLISECONDS.sleep(SPLASH_DURATION);
        } catch (InterruptedException e) {
            // Do nothing
        }
        return null;
    }

    @Override
    protected void onPostExecute(Void aVoid) {
        Intent intent = new Intent(LauncherActivity.this, MainActivity.class);
        startActivity(intent);
        finish();
    }

}

我注意到几乎所有应用程序都会在第一屏显示时出现一些延迟和这个白屏,但在某些应用程序中,这个屏幕又回来了。有什么办法控制吗?

您可以定义 activity 的样式并在 Manifest 中进行设置。这样,当 activity 运行时,它将使用其预定义的样式(您将在其中将背景或 windowBackground 设置为红色),并且在 0.3 秒内,windows 仍将是红色。

定义颜色:

<resources>
    <color name="background">#FF0000</color>
</resources>

然后定义样式:

<resources>
    <style name="MyLaunchActivityTheme" parent="@android:style/Theme.Light"> 
        <item name="android:windowBackground">@color/background</item>
     </style>
</resources>

然后在清单中设置 activity 的样式:

<activity
    android:name=".MyActivity"
    android:theme="@style/MyLaunchActivityTheme"/>

Sam 给出的答案是完美的,但要扩展它 - 让您希望自定义启动画面图像始终可见,如果我们将颜色应用到 window,那么将会有一个从实际斜线屏幕的颜色。我建议的答案不需要 setContentView 但只能通过主题管理启动画面。

我们无法在 java 中设置主题,因为在我的情况下,控件很晚才进入我的 splash activity 的 onCreate。直到那个时候黑屏保持可见。

这让我知道 window 必须从我们在清单中指定的主题进行管理。

这是我的清单:

<activity
        android:name=".main.activities.SplashScreen"
        android:theme="@style/Splash"
        android:screenOrientation="portrait">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
</activity>

现在我创建的主题如下:

<style name="Splash" parent="@style/Theme.AppCompat.Light">
    <item name="android:windowBackground">@drawable/splash</item>
    <item name="android:windowNoTitle">true</item>
    <item name="windowNoTitle">true</item>
    <item name="colorPrimaryDark">@color/green_09</item>
    <item name="colorPrimary">@color/green_09</item>
    <item name="windowActionBar">false</item>
</style>

在包含位图资源的可绘制资源中启动,我必须稍微调整一下以使其看起来完美而不是拉伸并且居中:

<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
    android:antialias="true"
    android:dither="true"
    android:gravity="fill"
    android:src="@drawable/splash_screen" />