Here is my phone screen我試過ScrollView與keyboardShouldPersistTaps,但它沒有奏效。我有一個用於自動填充建議的ScrollView,當用戶可以在那裏鍵入時,他也應該從建議中進行選擇。但是,沒有關閉鍵盤,在我的情況下是不可能的。這裏是我的工作React Native,我無法點擊沒有關閉鍵盤
<ScrollView
scrollEnabled={false}
keyboardShouldPersistTaps={true}>
<View style={{ maxHeight: 220 }}>
<ScrollView style={Style.suggestionContainer}
scrollEnabled={true} >
{this.state.showOptions.map(this.renderSuggestions)}
</ScrollView>
</View>
</ScrollView>
.
.
.
private renderSuggestions(option: MultiInputQuestionOption) {
return (
<TouchableOpacity onPress={this.addSelection.bind(this, option)} >
<Text style={Style.suggestions}>
{option[this.props.titleKey]}
</Text>
</TouchableOpacity >
)
}
有什麼可能的解決辦法嗎?
爲什麼你有兩個滾動視圖組件?嘗試只用一個 – Raymond
這個bug有什麼好運氣? – nikasv