22

Android のサポートの欠如について言及しているドキュメントはありません。シンプルなプリセット アニメーションを使用しています。

LayoutAnimation.configureNext(LayoutAnimation.Presets.spring);

iOS では動作しますが、Android ではスプリング アニメーションなしで遷移します。

4

4 に答える 4

44

Android のサポートについては、次の行を追加する必要があります

 import  {
   UIManager,
   LayoutAnimation
 } from 'react-native';

 //..

 UIManager.setLayoutAnimationEnabledExperimental && UIManager.setLayoutAnimationEnabledExperimental(true);
于 2016-07-13T17:06:00.757 に答える
3

以下の両方の行を書くと、私のアンドロイドhtc Desire Pro 10で機能します

LayoutAnimation.spring();

UIManager.setLayoutAnimationEnabledExperimental && UIManager.setLayoutAnimationEnabledExperimental(true);
于 2018-11-25T18:18:05.940 に答える