Can I Add GIF format Image as a Splash Screen

后端 未结 2 679
鱼传尺愫
鱼传尺愫 2020-12-09 21:48

How can i add GIF format image as a splash screen. I tried to add but when i add it. It acts as a normal image. I don\'t know whether we can use Gif image as splash Screen.

2条回答
  •  遥遥无期
    2020-12-09 22:16

    use glide to solve this.

    ImageView imageView = findViewById(R.id.splashScreen);
            GlideDrawableImageViewTarget splashScreen = new GlideDrawableImageViewTarget(imageView);
            Glide.with(this).load(R.raw.gif_men_at_work).into(splashScreen);
    

    go to this stackoverflow link for more detail

提交回复
热议问题