我在反应本机启动画面时遇到问题

问题描述 投票:0回答:2

我在使用 React Native 启动画面时遇到问题。我按照 github 存储库上的步骤操作,但问题仍然存在。

在我的应用程序中安装和配置 React Native Splash Screen 后出现问题。我正确地执行了所有步骤,当我启动应用程序时,会显示我选择的图像。但是,在屏幕之间导航时,如果屏幕包含输入标签(我使用 NativeBase 库,但我也尝试使用 React 组件并遇到相同的错误),应用程序崩溃并显示以下错误消息:

错误

build.gradle 文件:

构建gradle

settings.gradle 文件:

设置渐变

MainActivity.java 文件:

在此输入图片描述

launch_screen.xml 文件:

启动屏幕

我重复一遍,启动屏幕看起来不错,当我尝试使用输入标签时出现问题。

有什么想法吗?或者建议??

android reactjs react-native splash-screen react-native-splash-screen
2个回答
0
投票

我认为你丢失了这个文件:

enter image description here

你的清单中应该有这个splashActivity

enter image description here


0
投票

对我来说,结果是

colors.xml
文件中缺少值:

旧:

<resources>
  <color name="iconBackground">#ffffff</color>
  <color name="colorPrimary">#023c69</color>
  <color name="colorPrimaryDark">#ffffff</color>
</resources>

新:

<resources>
  <color name="iconBackground">#ffffff</color>
  <color name="colorPrimary">#023c69</color>
  <color name="colorPrimaryDark">#ffffff</color>
  <color name="splashscreen_background">#ffffff</color>
</resources>
© www.soinside.com 2019 - 2024. All rights reserved.