活动指标在IOS反应原生工作正常,但它没有旋转或在Android上动画,任何帮助???
<View style{{marginLeft:0,width:60,height:60,borderRadius: 30,justifyContent:"center",alignItems:"center", backgroundColor:'#eee', borderColor:"#fff", borderWidth:1 }}>
<ActivityIndicator size="small" animating={true}/>
</View>
答案 0 :(得分:3)
我也遇到了这个问题,原因是我在开发人员选项中禁用了动画(缩放为x0)。如果您更改此配置(动画比例)或禁用开发人员选项,则应该可以解决您的问题。希望对您有帮助
答案 1 :(得分:0)
我在我的反应原生项目中实现了相同的代码......为我工作
<View style={{ marginLeft:0, width:60,height:60,borderRadius: 30,justifyContent:"center",alignItems:"center", backgroundColor:'#eee', borderColor:"#fff", borderWidth:1 }}>
<ActivityIndicator size="small" animating />
</View>
顺便说一下你忘了=
签名后的风格(第一行),
我的猜测是这个问题不是由于这个观点,也许是一些父组件。
答案 2 :(得分:0)
检查出来
<View
style={[
StyleSheet.absoluteFill, {
backgroundColor: 'rgba(0,0,0,0.4)',
alignItems: 'center',
justifyContent: 'center',
zIndex: 99,
},
]}>
<ActivityIndicator color="#fff" />
</View>
还面临任何问题?查看现场演示