2
このようなプリセットはあらかじめ定義されています。ネイティブLayoutAnimationカスタムプリセットに反応します
LayoutAnimation.configureNext(LayoutAnimation.Presets.linear);
しかし、リニアタイプと0.1秒のスピードでカスタムプリセットを使用する方法が見つかりませんでした。
このようなプリセットはあらかじめ定義されています。ネイティブLayoutAnimationカスタムプリセットに反応します
LayoutAnimation.configureNext(LayoutAnimation.Presets.linear);
しかし、リニアタイプと0.1秒のスピードでカスタムプリセットを使用する方法が見つかりませんでした。
使用すると、このようにそれを使用することができます:
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
}
}
で