如何在TextInput中突出显示部分文本反应原生

Posted

技术标签:

【中文标题】如何在TextInput中突出显示部分文本反应原生【英文标题】:How to highlight a part of a text in TextInput react native 【发布时间】:2020-07-26 19:54:21 【问题描述】:

在我的 <TextInput> 中,我必须为每个以“@”开头的单词设置背景颜色。我可以检测到“@”,但我从未见过突出显示部分文本的文档。 不是所有的文字,只是一部分。

我不想在另一个 <View><Text> 中看到我的文字,如本例所示:https://gist.github.com/scf4/012e9f615f6b43a1712a083b162afd94

我不知道我们是否真的有解决方案,但如果你有的话,非常感谢。

【问题讨论】:

这段代码完成了它的工作。不明白您的要求 小吃:snack.expo.io/@msbot01/healthy-hummus 【参考方案1】:

这可以通过在您的TextInput 中添加Text 元素来完成:

<TextInput onChangeText=this.handleCheckTextChange>
  <Text>this.state.formattedText</Text>
</TextInput>

handle 函数将解析文本并为所有提及创建样式化 Text 元素,因此 formattedText 将成为 Text 元素的数组:

  handleCheckTextChange = (inputText) => 
    const words = inputText.split(' ');
    const formattedText = [];
    words.forEach((word, index) => 
      const isLastWord = index === words.length - 1;
      if (!word.startsWith('@')) 
        return isLastWord ? formattedText.push(word) : formattedText.push(word, ' ');
      
      const mention = (
        <Text key=word + index style=color: 'red'>
          word
        </Text>
      );
      isLastWord ? formattedText.push(mention) : formattedText.push(mention, ' ');
    );
    this.setState(formattedText: formattedText);
  

演示:https://snack.expo.io/@raphaelmerx/text-per-word-style

【讨论】:

以上是关于如何在TextInput中突出显示部分文本反应原生的主要内容,如果未能解决你的问题,请参考以下文章

如何在多行反应原生 textInput 中包装文本

React Native TextInput 抓取突出显示的文本,并在我点击离开时保持突出显示

如何使用 DateTimePicker 值更新 TextInput?反应原生

反应原生 TextInput 离开我的屏幕

如何在本机反应中使用 TextInput 显示工具提示错误

如何在占位符文本上启动光标位置中心反应原生?