how to change images with timer

后端 未结 2 1329
闹比i
闹比i 2020-12-30 19:05

Hi all I have to images say image1 and image2 I want to display both images on timer, only one image should be visible at a time. Both images are overlapped, meaning, image1

相关标签:
2条回答
  • 2020-12-30 19:19

    Put your images in Drawable folder. and create an splash.xml file in drawable folder like this :

    <animation-list xmlns:android="http://schemas.android.com/apk/res/android" android:oneshot="true"> <item android:drawable="@drawable/splash_1" android:duration="200" /> <item android:drawable="@drawable/splash_2" android:duration="200" /> <item android:drawable="@drawable/splash_3" android:duration="200" /> <item android:drawable="@drawable/splash_4" android:duration="200" /> <item android:drawable="@drawable/splash_5" android:duration="200" /> </animation-list>

    and in your activity class

    setContentView(R.layout.splashscreen);
    
        final ImageView splashImage = (ImageView) findViewById(R.splash.ImageView);
        splashImage.setBackgroundResource(R.drawable.splash);
        splashAnimation = (AnimationDrawable) splashImage.getBackground();
        splashAnimation.start();
    
    0 讨论(0)
  • 2020-12-30 19:20

    The code does not changes from first image to next.

    is any thing wrong withthis code?

    final ImageView splashImage = (ImageView) findViewById(R.id.ImageView01);
         splashImage.setBackgroundResource(R.drawable.splash);
         AnimationDrawable splashAnimation = (AnimationDrawable) splashImage.getBackground();
         splashAnimation.start();
    
    0 讨论(0)
提交回复
热议问题