Android のサポートの欠如について言及しているドキュメントはありません。シンプルなプリセット アニメーションを使用しています。
LayoutAnimation.configureNext(LayoutAnimation.Presets.spring);
iOS では動作しますが、Android ではスプリング アニメーションなしで遷移します。
Android のサポートの欠如について言及しているドキュメントはありません。シンプルなプリセット アニメーションを使用しています。
LayoutAnimation.configureNext(LayoutAnimation.Presets.spring);
iOS では動作しますが、Android ではスプリング アニメーションなしで遷移します。
Android のサポートについては、次の行を追加する必要があります。
import {
UIManager,
LayoutAnimation
} from 'react-native';
//..
UIManager.setLayoutAnimationEnabledExperimental && UIManager.setLayoutAnimationEnabledExperimental(true);
以下の両方の行を書くと、私のアンドロイドhtc Desire Pro 10で機能します
LayoutAnimation.spring();
UIManager.setLayoutAnimationEnabledExperimental && UIManager.setLayoutAnimationEnabledExperimental(true);