3

次のコードを使用して、SplashScreenの2つの画像の間にアニメーションを設定しています。

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.splash);

     // Show A Transitions for Splash image here.
    TransitionDrawable transition = (TransitionDrawable) getResources()
            .getDrawable(R.drawable.splash_animation);

    //Set interval for the transition between two image.
    transition.startTransition(5000);

    //Fetch imageView from your layout and apply transition on the same.

    ImageView imageView= (ImageView) findViewById(R.id.splash_image);
    imageView.setImageDrawable(transition);
}

私のsplash.xmlは:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <ImageView
        android:scaleType="fitXY"
        android:id="@+id/splash_image"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:src="@drawable/img_1" />
</RelativeLayout>

私のsplash_animation.xmlファイルは:

<?xml version="1.0" encoding="utf-8"?>
<transition xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:drawable="@drawable/img_1"></item>
  <item android:drawable="@drawable/img_2"></item>
</transition>

トランジションは正常に機能していますが、3つの画像に対してもトランジションを作成できるかどうかを知りたいと思いました。spark_animationに3番目の画像を追加しようとしましたが、遷移は最初の画像に対してのみ行われます。必要な数の画像でそれを達成するにはどうすればよいですか?

4

2 に答える 2

1

の配列を入れ TransitionDrawableます。

List<TransitionDrawable>array = new ArrayList<TransitionDrawable>();

TransitionDrawable transition1 = (TransitionDrawable) getResources()
            .getDrawable(R.drawable.splash_animation1); // first,second image

TransitionDrawable transition2 = (TransitionDrawable) getResources()
            .getDrawable(R.drawable.splash_animation2); // third,fourth image

array.add(transition1);
array.add(transition2);
// call array
for(TransitionDrawable transition :array){
transition.start(5000);
}
 ImageView imageView= (ImageView) findViewById(R.id.splash_image);
 imageView.setImageDrawable(transition[0]); // if transition[0] is finished  setImageDrawable(transition[1]);
于 2012-11-08T07:26:49.153 に答える
0

これは、任意の数の画像で実行できます。

配列内の現在のアイテムと次のアイテムを使用してTransitionDrawableを再作成し、更新する必要があります。

https://stackoverflow.com/a/54584103/114549で私の答えを参照してください

于 2019-02-07T23:51:55.983 に答える