gpt4 book ai didi

android - 如何在 native react 中对 TextInput 应用点击事件

转载 作者:行者123 更新时间:2023-12-02 22:38:10 25 4
gpt4 key购买 nike

您好,我正在我的 React Native 应用程序中使用 TextInput 。我想通过单击 TextInput 打开日期对话框。我没有找到任何解决办法来在 TextInput 上应用点击事件。有谁知道如何在 native react 中做到这一点?

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

最佳答案

TextInput 上添加 pointerEvents="none"

示例

<TouchableOpacity onPress={() => console.log("Pressed")}>
<TextInput
pointerEvents="none"
/>
</TouchableOpacity>

关于android - 如何在 native react 中对 TextInput 应用点击事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45781513/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com