22

非常奇怪的行为,我使用的是FlatList,在它上面有 2 个浮动按钮 ( TouchableOpacity) (绝对位置),当它们被按下时,它们的背景颜色变成黑色。这仅在 IOS 上发生。

在此处输入图像描述 在此处输入图像描述

代码:

使成为

let content = (
  <CollapsableNavList
    onListScroll={this.showOrHideFilterButtons}
    showFilterButtonsOnScroll={this.showOrHideFilterButtons}
    style={styles.list}
    isHorizontal={false}
    dataModel={this.props.isFetching ? this.props.whileFetchingDisplayedResults : this.props.dataModel}
    isFetching={false}
    onRowSelect={this._onRowSelect}
    didScrollWithOffset={this.didScrollWithOffset}
    renderRowContent={this.renderRowContent}
    keyExtractor={(item) => {
      if (this.props.isFetching) {
        return item
      }
      const property = item
      return property.propertyId
    }}
  >
    {header}
  </CollapsableNavList>
)

return (
  <View style={[styles.container, styles.relative]}>
    <View style={styles.filterBtnBlock}>
      <AdditionalSearchParamsButton

        title='Map'
        iconName='map'
        onPress={this.onMapPress}
      />
    </View>
    {content}
  </View>
)


export default class AdditionalSearchParamsButton extends Component {
  // Prop type warnings
  static propTypes = {
    iconName: PropTypes.string.isRequired,
    title: PropTypes.string.isRequired,
    onPress: PropTypes.func.isRequired
  }

  render () {
    const { iconName, title, onPress } = this.props
    return (
      <View>
        <TouchableHighlight onPress={onPress} underlayColor={Colors.clear}>
          <View style={styles.innerContainer}>
            <McIcon
              name={iconName}
              style={styles.additionalPropsIcon}
          />
            <Text style={styles.additionalPropsText}>{title}</Text>
          </View>
        </TouchableHighlight>
      </View>
    )
  }
}

export default StyleSheet.create({
  container: {
    height: 50,
    width: 150,
    alignItems: 'center',
    justifyContent: 'center'
  },
  innerContainer: {
    height: 36,
    width: 126,
    flexDirection: 'row',
    justifyContent: 'center',
    alignItems: 'center',
    backgroundColor: Colors.snow,
    borderRadius: 18,
    elevation: 2,
    shadowOffset: {width: 0, height: 2},
    shadowColor: 'black',
    shadowOpacity: 0.3,
    marginBottom: 5,
  },
  additionalPropsBtn: {
    height: 36,
    flexDirection: 'row',
    justifyContent: 'center',
    alignItems: 'center',
    backgroundColor: Colors.snow
  },
  additionalPropsText: {
    ...Fonts.style.bigTitle,
    color: Colors.blue,
    paddingLeft: 10
  },
  additionalPropsIcon: {
    fontSize: 22,
    color: Colors.blue
  }
})

我试过的:

- 将背景颜色设置为清除,但没有成功。

- 在下面添加不同的图层,没有成功。

- 这仅在显示在列表中时发生,ListView也会发生。

4

5 回答 5

25

请使用TouchableOpacity 代替TouchableHighlight

TouchableHighlight单击时突出显示背景

于 2017-08-28T14:20:24.067 回答
22

试试添加这个<TouchableHighlight underlayColor='none' />

于 2019-02-22T17:49:53.127 回答
16

在你的 TouchableOpacity 道具中试试这个

underlayColor="#ffffff00"
于 2017-09-05T02:13:44.420 回答
4

我已经使用带有背景颜色的 activeOpacity 解决了它

<TouchableOpacity activeOpacity={1} backgroundColor="#FFF"></TouchableOpacity>

您可以使用自己的背景颜色

于 2020-08-22T09:09:01.740 回答
-1

View_<TouchableHighlight underlayColor="#fff">

于 2018-07-06T08:22:10.507 回答