反应天然图像在模拟器和设备中都无法使用Android



<Image />在iOS模拟器中显示,但在Android模拟器和设备中未显示。

只有当我将其用作Google Maps的自定义标记

时,它才无法正常工作。
<MapView.Marker
    coordinate={this.state.spot}
>
    <View style={styles.customMarker}>
        <Image style={styles.marker}
             source={images.customMarker}
             resizeMode='stretch'
        />
    </View>
</MapView.Marker>

这可能是模拟器的问题,并且它发生在弱网络中尝试完全重置它。(好像是新iPhone)。"重置内容和设置"也要关注您的图像URL。重建您的项目并运行。它对我有用。

相关内容

  • 没有找到相关文章

最新更新