React Native-根据背景颜色更改文本颜色

时间:2020-01-01 12:31:30

标签: android ios react-native

我想做如下图所示的操作,但是我不知道如何实现(我用谷歌搜索,但是我发现只有本机代码Swift,Obj C,...的结果)。

enter image description here

我需要玩一些类似的游戏吗?

感谢您的回答!

维克托

3 个答案:

答案 0 :(得分:2)

此实现有点不同,主要是我有2个不同的视图,它们具有不同的样式,最后用主视图包装这2个视图。

import * as React from "react";
import { Text, View, StyleSheet } from "react-native";

export default class Example extends React.Component {
  render() {
    return (
      <View style={styles.container}>
        <View style={styles.leftViewStyle}>
          <Text style={styles.leftLabelStyle}>Text color ch</Text>
        </View>
        <View style={styles.rightViewStyle}>
          <Text style={styles.rigthLabelStyle}>ange</Text>
        </View>
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    flexDirection: "row",
    alignItems: "center",
    justifyContent: "center",
    marginHorizontal: 20
  },
  leftViewStyle: {
    flex: 1,
    backgroundColor: "#5483b3",
    alignItems: "flex-end",
    borderTopLeftRadius: 20,
    borderBottomLeftRadius: 20
  },
  rightViewStyle: {
    flex: 1,
    backgroundColor: "#d0d3d6",
    borderTopRightRadius: 20,
    borderBottomRightRadius: 20
  },
  leftLabelStyle: {
    fontSize: 16,
    paddingVertical: 5,
    color: "#fff"
  },
  rigthLabelStyle: {
    fontSize: 16,
    paddingVertical: 5,
    color: "#000"
  }
});

这可能不是最佳解决方案。如果您有任何疑问,请随时提出。 希望对您有帮助。

答案 1 :(得分:2)

与上一个答案相同的样式,但是通过添加另一个视图来更改实现,该视图包含具有相同背景颜色的文本和位于'absolute'位置的灰色文本中的文本颜色!

import * as React from 'react';
import { Text, View, StyleSheet } from 'react-native';

export default class Example extends React.Component {
  state = {
    text: 'Text color changes',
  };

  render() {
    console.log(this.state.textArray);
    return (
      <View style={styles.container}>
        <View
          style={{
            flex: 1,
            backgroundColor: '#d0d3d6',
            borderTopRightRadius: 20,
            borderBottomRightRadius: 20,
            borderTopLeftRadius: 20,
            borderBottomLeftRadius: 20,
            overflow: 'hidden',
          }}>
          <Text style={styles.leftLabelStyle}>{this.state.text}</Text>
          <View
            style={{
              width: '30%',
              height: '100%',
              position: 'absolute',
              backgroundColor: '#5483b3',
            }}>
            <Text numberOfLines={1} ellipsizeMode='clip' 
              {styles.RightLabelStyle}>
              {this.state.text}
            </Text>
          </View>
        </View>
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    flexDirection: 'row',
    alignItems: 'center',
    justifyContent: 'center',
    marginHorizontal: 20,
  },

  leftLabelStyle: {
    fontSize: 16,
    paddingVertical: 5,
    color: '#000',
  },
  RightLabelStyle: {
    fontSize: 16,
    paddingVertical: 5,
    color: '#fff',
  },
});

小吃示例:https://snack.expo.io/@hassan190011/loading

编辑:在numberOfLines之后添加ellipsizeMode='clip'以删除点

答案 2 :(得分:0)

嘿,非常感谢您的回答,

我不得不用省略号来处理文本溢出,这与您的建议确实很复杂,所以我使用maskView做到了这一点。

我确实那样:

// container
<View style={{flex:1, borderRadius: 200, height: 25, overflow:hidden}}>

    // Progress bar support
    <View style={{flex:1, backgroundColor: 'gray'}} />

    // Progress bar, I play with "width" to indicate percentage
    <View style={[StyleSheet.absoluteFill, {width: "50%", backgroundColor: 'green'}]} />
    <MaskedView
        style={[StyleSheet.absoluteFill, {justifyContent: 'center'}]}
        maskElement={
            // I define text which will be masked
            <View style={[StyleSheet.absoluteFill, {justifyContent: 'center'}]}>
                <Text
                    style={{marginHorizontal: 15, fontSize: 13}}
                    numberOfLines={1}>
                    Text color change
                </Text>
            </View>
        }>

        // I define a default mask that I apply to the text so that it is 'black' when it is not ON the progress bar.
        <View style={[StyleSheet.absoluteFill,{backgroundColor: 'black'}]} />

        // I define the mask that takes the size of the progress bar and that I apply over the default mask (to overwrite it) so that the text under the mask becomes white.
        <View style={[StyleSheet.absoluteFill,{width:"50%", backgroundColor: '#fff'}]} />
    </MaskedView>
</View>

因此,我有一个默认栏指示“最大进度”,并定义了进度栏(该进度栏根据百分比而增加或缩小)。 然后,定义一个MaskedView,其文本为MaskedElement。 默认情况下,我在文本上应用黑色蒙版,以便无论发生什么情况始终为黑色。 然后,我用与进度条大小完全相同的白色蒙版覆盖此蒙版。 因此,进度条遮罩下的所有内容都会变为白色,以继续显示在我的“黑暗”进度条上,其余的均为黑色!

这样,我可以使用ellpsizeMode =“ tail”轻松管理文本溢出。

这是结果:

result1

result 2