gpt4 book ai didi

android - 如何避免启动应用程序时出现黑屏

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:24:03 25 4
gpt4 key购买 nike

当我最初启动我的应用程序时,我得到一个黑屏,在我的主要 Activity 开始之前会停留几秒钟。在 iphone 的情况下,会在那一瞬间显示名称为 default 的图像。我不确定如何在 Android 中做同样的事情。我徒劳地尝试如下:

         <activity android:name=".Index"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@drawable/defaultimage">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

最佳答案

我猜你对“Index”Activity 的 onCreate 方法进行了繁重的操作。

你应该把繁重的操作放在一个线程上,并用图像制作一个闪屏,当线程完成时,加载菜单或任何你需要的东西。

例如,您可以制作一个“加载屏幕”。使用 Android 非常简单:https://developer.android.com/guide/appendix/faq/commontasks.html#progressbarhttps://developer.android.com/reference/android/widget/ProgressBar.html

关于android - 如何避免启动应用程序时出现黑屏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2585260/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com