我们预定义了这样的预设。
LayoutAnimation.configureNext(LayoutAnimation.Presets.linear);
但我没有找到一种方法来使用我的自定义预设,例如线性类型和0.1s速度。
答案 0 :(得分:4)
你可以像这样使用它:
LayoutAnimation.configureNext(CustomAnimation)
带
var CustomAnimation = {
duration: 400,
create: {
type: LayoutAnimation.Types.spring,
property: LayoutAnimation.Properties.scaleXY,
springDamping: 0.7
},
update: {
type: LayoutAnimation.Types.spring,
springDamping: 0.7
}
}