我正在尝试在我正在处理的反应原生应用中为某些图像添加填充。根据设备宽度调整图像大小,以便每行显示四个。在this.props.images中,有9个图像显示没有任何填充。
我已经尝试在一个填充为1的视图中包装Image,如下所示:
renderRow(rowData){
const {uri} = rowData;
return(
<View style={{padding: 1}}>
<Image style={styles.imageSize} source={{uri: uri}} />
</View>
)
}
但是当我尝试时只有前三个图像出现填充。其余图像不会出现。
我的整个代码在这里:
class ImageList extends Component {
componentWillMount(){
const ds = new ListView.DataSource({
rowHasChanged: (r1, r2) => r1 !== r2
});
this.dataSource = ds.cloneWithRows(this.props.images);
}
renderRow(rowData){
const {uri} = rowData;
return(
<Image style={styles.imageSize} source={{uri: uri}} />
)
}
render() {
return (
<View>
<ListView
contentContainerStyle={styles.list}
dataSource={this.dataSource}
renderRow={this.renderRow}
/>
</View>
);
}
}
var styles = StyleSheet.create({
imageSize: {
//newWidth is the width of the device divided by 4.
//This is so that four images will display in each row.
width: newWidth,
height: newWidth,
padding: 2
},
list: {
flexDirection: 'row',
flexWrap: 'wrap'
}
});
如何添加填充并使我的所有图像都正确显示?
这是我希望我的应用程序如何显示图像的图像。
但是这里是我用with padding包装renderRow函数的返回值时的显示方式。有填充,这是我想要的,但只显示前3张图片。我想要所有带有填充的9张图片显示。
答案 0 :(得分:2)
我能够通过使用Thomas在评论部分提供的建议来解决我的问题。
我所做的是添加alignSelf:&#39; flex-start&#39;
代码如下所示:
renderRow(rowData){
const {uri} = rowData;
return(
<View style={{padding: 1, alignSelf: 'flex-start'}}>
<Image style={styles.imageSize} source={{uri: uri}} />
</View>
)
}
图片现在正确显示。