如何在native native中设置TextInput上的焦点侦听器

时间:2017-08-20 10:24:18

标签: android react-native react-native-android

您好我在我的反应原生应用程序中使用TextInput。我想点击TextInput打开日期对话框。我想到它是否允许听取焦点事件然后它可能对我有用。

我没有找到任何关于此的消息。有没有人知道如何在反应原生的TextInput上设置焦点监听器?

<TextInput
  style={{
    height: 40,
    borderColor: "gray",
    borderWidth: 1,
    marginTop: 8
  }}
  underlineColorAndroid="transparent"
  placeholder={strings.schedule_date}
  onKeyPress={keyPress => console.log(keyPress)}
/>

1 个答案:

答案 0 :(得分:1)

您可以使用onFocus道具。它是一个回调,在文本输入被聚焦时调用。你可以阅读document