0

ImageBackground 拍摄一张图片,我能够添加具有图片和一些文本的子视图。但是,我想要的是像旋转图像一样的背景工作,而子视图保持原样反应本机。有没有办法做到这一点?

我现在拥有的:

<ImageBackground style= {styles.headerBackground} source={require('./img/headerBg.jpg')}>
    <View style={styles.top}>
        <Avatar
            small
            rounded
            icon={{name: 'menu'}}
            onPress={() => console.log("Works!")}
            activeOpacity={0.7}
        />               
    </View>
    <View style = {styles.header}>
        <Avatar
            large
            source={require('./img/profBg.jpg')}
            avatarStyle={{ borderWidth: 3, borderColor: 'white',  borderStyle:'solid' }}
            onPress={() => console.log("Works!")}
            activeOpacity={0.7}
        />
        <Text style={styles.name}>Name</Text>
        <Text style={styles.message}> Personal message</Text>
    </View>
</ImageBackground>

我不想在背景中有一张图像,而是想要旋转/滑动图像。有人可以帮忙吗?

4

1 回答 1

0

<ImageBackground>只是一个<View>with<Image style={{position:'absolute'}} />里面。来源ImageBackground- https://github.com/facebook/react-native/blob/c6b96c0df789717d53ec520ad28ba0ae00db6ec2/Libraries/Image/ImageBackground.js#L63

所以你可以做的是一样的,只是放多张图片,也许还有这样的父母:

<View>
    <View style={{ position:'absolute' }}>
        <Image />
        <Image />
        <Image />
        <Image />
    </View>
</View>
于 2018-05-26T20:01:00.430 回答