react-native android url图像未显示

时间:2018-03-23 05:29:34

标签: android react-native

使用uri从远程显示的动态图像未在Android模拟器中显示。而这在ios中完全没问题。

<Image source={uri: 'https://reactnativecode.com/wp-content/uploads/2017/05/react_thumb_install.png'} style = {{height: 200, resizeMode : 'stretch', margin: 5 }} />

我们是否必须在android中进行任何其他配置才能显示远程图像。请帮助。

1 个答案:

答案 0 :(得分:1)

试试这个

<Image   
     onLoad={() => this.forceUpdate()}    
     resizeMode={Image.resizeMode.cover}  
     source={{uri: 'https://facebook.github.io/react-native/docs/assets/favicon.png'}} 
     style = {styles.imageStyle} />

这种风格

 imageStyle:{
    height:100,
    width:100,    
  }