gpt4 book ai didi

android - 如何彻底消除ionic 2项目中的空白白屏

转载 作者:行者123 更新时间:2023-11-29 01:14:05 24 4
gpt4 key购买 nike

当启动画面完成加载时,应用程序有时会变成空白,我必须按主页键并再次打开应用程序才能运行。这种情况经常发生,足以让它变得非常烦人。请问我怎样才能完全摆脱它。看过其他解决方案,但它们对我不起作用。正在为 Android 构建。

最佳答案

为了避免黑屏,您可以使用与您的 Activity 相关的主题,例如:

 <style name="SplashTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowBackground">@drawable/fondo_splash</item>
</style>

android:windowBackground 属性中,您必须定义一个始终存在的背景,例如图像(存储在 @drawable/ 中)

    <item name="android:windowBackground">@drawable/bakg_image_splash</item>

或颜色(@color/):

    <item name="android:windowBackground">@color/background_splash</item>

在我们的 AndroidManifest.xml 中,我们可以为我们的应用程序定义主题:

  <application
android:theme="@style/SplashTheme">

o 特定 Activity :

<activity android:name=".SplashScreenActivity"
android:theme="@style/SplashTheme" >

有了这个我们可以确保有一个背景(可绘制或颜色),并避免空白屏幕。

introducir la descripción de la imagen aquí

关于android - 如何彻底消除ionic 2项目中的空白白屏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40935777/

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