如何在本机(android)中制作图像背景。
使用CSS中的属性:' background-repeat:repeat'
答案 0 :(得分:3)
认为这可能是你正在寻找的东西,即。 resizeMode = '重复'。
https://facebook.github.io/react-native/docs/image.html#resizemode
答案 1 :(得分:0)
我认为你不能那样做。
但你可以这样做:
<View style={{height:200,width:300}}>
<Image source={myImage} resizeMode={"repeat"} >
{myContenThatGoesOnTopOfImage}
</Image>
</View>
更新: 我之前的回答是错误的,但我找到了这个解决方案: