0

我正在使用 React Native 并尝试创建特定的布局。

我有一个图像,垂直和水平居中(在视图内),图像顶部的一些文本也垂直和水平居中。文本需要位于图像/背景图像之上,因此我将其放在图像标签内。

现在该文本的内容可能很长,因为它在图像标签内,所以它会换行。

我怎样才能使 Text 中的内容不会换行并且仍然位于 Image 之上?

到目前为止我的布局:

在此处输入图像描述

我试图实现的布局

在此处输入图像描述

我的代码:

<TouchableHighlight onPress={onPress}>
  <View style={styles.categoryContainer}>
    <View style={styles.leftContainer}>
      <View style={styles.categoryIndexContainer}>
        <Text style={styles.categoryIndex}>01</Text>
      </View>
    </View>
    <View style={styles.middleContainer}>
      <Image source={img} style={styles.categoryImage}>
        <Text style={styles.categoryName}>Some very long title name</Text>
      </Image>
    </View>
    <View style={styles.rightContainer}></View>
  </View>
</TouchableHighlight>

const styles = StyleSheet.create({
  categoryContainer: {
    flexDirection: 'row',
  },
  leftContainer: {
    width: 50,
    paddingLeft: 15,
    paddingTop: 30,
  },
  middleContainer: {
    alignItems: 'center',
    justifyContent: 'center',
    flex: 1,
    flexDirection: 'row',
  },
  rightContainer: {
    width: 50,
  },
  categoryName: {
    color: '#ffffff',
    fontWeight: 'bold',
    fontSize: 40,
    textAlign: 'center',
    backgroundColor: 'transparent',
    flexWrap: 'nowrap',
  },
  categoryImage: {
    alignItems:'center',
    justifyContent:'center',
    flexWrap: 'nowrap',
  },
})

谢谢

4

1 回答 1

0

您应该指定categoryName样式:position: 'absolute'然后设置top, left, right,bottom属性,直到TextImage.

于 2016-09-28T23:37:00.313 回答