ReactNative:溢出不适用于Android

时间:2018-03-26 14:42:23

标签: android react-native overflow

我在我的应用程序中使用React-Native。我使用.*(?=@)来显示主视图之外的视图。它在iOS中运行良好,但在Android中运行良好。

这是我的代码:

overflow

风格:

 <View style={Style.parentStyle}>
<View
    style={[
        {
            height: barHeight,
            backgroundColor: color,
            overflow: "visible"
        },
        Style.mainStyle
    ]}
>
    <View
        style={[
            {
                borderRadius: shadowHeight,
                top: -borderRadiusBar,
                borderWidth: 1.0,
                borderColor: borderColor,
                backgroundColor: color,
                overflow: "visible"
            },
            Style.roundStyle
        ]}
    >
        <Text style={Style.otherstyle}>{player value}</Text>
    </View>
</View>
<Text style={Style.textStyle}>{name}</Text>
</View>;

2 个答案:

答案 0 :(得分:1)

Android尚不支持overflow属性。但您可以支持功能请求here

重复Element overflow hidden in React-Native Android

答案 1 :(得分:1)

由于某些原生限制,它还没有工作,因此所有溢出项都将被隐藏。