18

嗨,我想将 TouchableOpacity 包装在 Text 中,因为我想让一些文本可点击。当我将所有内容包装在 Text 中时,它看起来很完美,这就是我想要的样子。

 <Text 
   style={{color: colors.black,
           fontSize: 12,
           fontWeight: 'normal',
           marginTop: 10,
           lineHeight: 18}}>
      {strings.loginPrivacyTermsCondOne} 
        <Text style={{color: colors.primaryColor,
                      fontSize: 12,
                      fontWeight: 'normal',}}>
          {strings.loginPrivacyTermsCondTwo}
        </Text>
          {strings.loginPrivacyTermsCondThree} 
        <Text style={{color: colors.primaryColor,
                      fontSize: 12,
                      fontWeight: 'normal'}}>
          {strings.loginPrivacyTermsCondFour}
        </Text>

          {/* <TouchableOpacity onPress={ this.termsOfService }>
            <Text style={{color: colors.primaryColor,
                          fontSize: 12,
                          fontWeight: 'normal',}}>
              {strings.loginPrivacyTermsCondFour}
            </Text>
          </TouchableOpacity> */}
      </Text>

当我添加 TouchableOpacity 它不起作用。

我尝试在视图中添加它,然后它工作正常,我可以添加 TouchableOpacity 但从 UI 角度来看,它们没有正确对齐。

这是仅显示 Text 的屏幕截图,其中 TouchableOpacity 不起作用,第二位位于 TouchableOpacity 起作用但看起来不正确的视图中。

在此处输入图像描述

如何使它看起来像第一个位。非常感谢任何建议。

谢谢R

4

1 回答 1

30

您可以嵌套 Text 元素,并在要使其可按下的每个嵌套 Text 元素(链接)上分配 onPress 处理程序。

见下文。有一个外部文本元素,内部是另一个文本元素,子文本元素有一个 onPress 处理程序,如果你运行它,你会看到“但这是!” 当你按下它时执行 onPress 处理程序,不需要 Touchable* 元素。

<Text style={{color: '#000'}}> 
     This part is not clickable 
     <Text onPress={() =>
           {alert('but this is');}}
           style={{color: '#00F'}}>
     But this is!
     </Text> 
     but this isn't
</Text>

您可以将样式放置在具有/a onPress 处理程序的任何 Text 元素上,以使它们具有不同的颜色,如您的示例图像中所示。

请注意,这很像 HTML,例如,您可以将锚标记嵌套在 ap 元素中;

<p>
    This part is not clickable 
    <a href="https://google.com"> but this is</a>
    but this isn't
</p>

在您的示例中,它会是这样的(未经测试):

<Text style={{color: colors.black,
              fontSize: 12,
              fontWeight: 'normal', 
              marginTop: 10,
              lineHeight: 18}}>
        {strings.loginPrivacyTermsCondOne} 
        <Text style={{color: colors.primaryColor,
                      fontSize: 12,
                      fontWeight: 'normal',}}>
          {strings.loginPrivacyTermsCondTwo}
        </Text>
          {strings.loginPrivacyTermsCondThree} 
        <Text style={{color: colors.primaryColor, 
                      fontSize: 12,
                      fontWeight: 'normal'}}>
          {strings.loginPrivacyTermsCondFour}
        </Text>

          <Text onPress={ this.termsOfService } 
                style={{color: colors.primaryColor,
                        fontSize: 12, 
                        fontWeight: 'normal'}}>
              {strings.loginPrivacyTermsCondFour}
          </Text> 
      </Text>

作为对您的评论的回应,这是一个在单击链接后更改颜色的示例。

简而言之,我在状态上添加了一个布尔字段,一旦文本被按下,我将该状态变量更新为真,文本元素的样式值然后有一个三元运算符,它决定渲染文本的颜色,在在我的示例中,如果尚未按下它,它将显示为“colors.primaryColor”,一旦被单击,它将显示为“红色”。

class Foo extends Component {

    constructor (props) {
        super(props);

        this.state = {
            privacyClicked: false //Track if they have clicked privacy
        };
    }

    render () {

        return (
             <Text onPress={ () =>{
    this.setState({
        privacyClicked: true
    });
}} style={{color: (this.state.privacyClicked ? colors.primaryColor : 'red'), 
           fontSize: 12,
           fontWeight: 'normal'}}>
    {strings.loginPrivacyTermsCondFour}
</Text> 
        );
    }
}

PS,示例文本的格式不是很好。

于 2018-09-04T14:26:08.233 回答