gpt4 book ai didi

javascript - ScrollView 不会在 android 上滚动

转载 作者:行者123 更新时间:2023-11-29 02:22:15 26 4
gpt4 key购买 nike

谁能帮我弄清楚为什么我的 scrollView 只能在 ios 而不能在 android 上工作?我正在使用 React Native,这个问题以前发生过,但通过删除容器的 flex 值得到修复,但这次我无法真正修复它非常感谢您的所有帮助!

  render() {
return (
<View style={styles.container}>

<ScrollView showsVerticalScrollIndicator={false}>
<Text style={styles.title}>REVIEWS 2</Text>
<View style={styles.informationBox}>
<View style={styles.informationRow}>
<Text style={styles.reviewText}>Traveler Rating</Text>
<Rating type="custom" style={{alignSelf: 'center', paddingLeft: 10}} imageSize={20} readonly startingValue={3}
ratingBackgroundColor= "#e9e9f1" ratingColor="#f7c66c"/>
</View>
<View style={styles.divider}></View>
<View style={styles.informationRow}>
<Text style={styles.reviewText}>Shipper Rating</Text>
<Rating type="custom" style={{alignSelf: 'center', paddingLeft: 10}} imageSize={20} readonly startingValue={0}
ratingBackgroundColor= "#e9e9f1" ratingColor="#f7c66c"/>
</View>
</View>
</ScrollView>
</View>
</View>
);
}
}

这是用于此特定屏幕的样式

   const styles = StyleSheet.create({
container: {
backgroundColor: '#28243c',
flex:1,
paddingBottom: (Platform.OS == 'android' ? 20 : 0)
},
userStatsContainer: {
paddingTop: 10,
flexDirection: 'row',
justifyContent: 'center'
},
userStatsItem: {
flexDirection: 'row',
paddingRight: 10,
alignSelf: 'center'
},
standAloneUserStatsItem : {
flexDirection: 'row',
paddingTop: 10,
alignSelf: 'center'
},
userStatsTitle: {
alignSelf:'center',
color: 'white',
paddingLeft: 5,
fontFamily: 'SF-medium'
},
title: {
color: '#f7c66c',
fontFamily: 'SF-bold',
fontSize: 20,
paddingTop: 30,
alignSelf: 'center'
},
informationBox: {
marginTop: 10,
backgroundColor: '#41436c',
width: '80%',
alignSelf: 'center'
},
informationRow: {
padding:10,
flexDirection: 'row'
},
reviewText: {
color: 'white',
fontFamily: 'SF-medium',
flex: 1
},
});

最佳答案

ScrollView 可能只有 1 个 child 。类似于 LinearLayout 或 ContraintLayout 的东西,然后包装实际内容。

关于javascript - ScrollView 不会在 android 上滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54726735/

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