React-Native Android: 无法显示静态图片

React-Native Android: Unable to display static images

我正在尝试使用 React Native 在我的 android 应用程序中显示静态图像 (ic_launcher)。我得到一个黑色的回应。没有错误。只是一个空白视图,好像该资源无法 exist.I 能够显示来自网络的图像。

  • \android
  • |----\应用程序
  • |----|---\src
  • |----|----|----\main
  • |----|----|----|---\res
  • |----|----|----|----|---\drawable
  • |----|----|----|---|---|---\ic_launcher.png

您应该使用 require('image!img_name') 作为 Image 组件的 source 属性。 请在此处查看示例应用 https://github.com/facebook/react-native/blob/master/Examples/UIExplorer/ImageExample.js#L84 with it's resource placed under https://github.com/facebook/react-native/tree/master/Examples/UIExplorer/android/app/src/main/res/drawable

您的 ic_launcher 文件可能位于 android/app/src/main/res/mipmap-xxx 目录中。尝试将其移动到 android/app/src/main/res/drawable-xxx 个目录。