在大的view外面套一个触发事件

<TouchableWithoutFeedback
  style={{ flex: 1 }}
  onPress={() => {
    this.textInputName.blur();
  }}
>

...

  <TextInput
    ref= {(ref)=>this.textInputName = ref}
  />

...

</TouchableWithoutFeedback>

相关文章: