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

发布于 2024-08-28 05:15:47 字数 592 浏览 3 评论 0原文

当我最初启动我的应用程序时,我会看到一个黑屏,在我的主要活动开始之前它会停留几秒钟。如果是 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>  

When I start my application initially, I get a black screen which stays for a few seconds before my main activity starts. In case of iphone an image with name default is displayed for that split second. I'm not sure how to do the same in Android. I tried as below in vain :

         <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>  

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酷炫老祖宗 2024-09-04 05:15:47

我猜您对“Index”活动的 onCreate 方法进行了繁重的操作。

您应该将繁重的操作放在线程上,并使用图像制作启动屏幕,当线程完成时,加载菜单或您需要的任何内容。

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

I guess you have a heavy operation on the onCreate method of your "Index" Activity.

You should put the heavy operations on a thread and make a splash screen with the image, and when the thread is finished, load the menu or whatever you need.

You can make a "loading screen" for example. It's really easy with Android: https://developer.android.com/guide/appendix/faq/commontasks.html#progressbar or https://developer.android.com/reference/android/widget/ProgressBar.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文