Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create an animation in a splash screen?

When we open a app we get different type of animated object or people moving around in the splash screen of an app for example like a person running while the app is loaded or the name of the app falls and a guy sits on it clicking photos.

How can we create one and what type of software do we use?

Can you suggest me some tutorials to follow?

like image 746
kautilya hari Avatar asked Jul 04 '16 06:07

kautilya hari


2 Answers

  1. use gif

OR

  1. use Animation :

    Ex) Awesome-looking customizable splash screen : AwesomeSplash

like image 192
Ajit Avatar answered Oct 27 '22 22:10

Ajit


You can also use your own created gif images to show on the imageview at splash screen through Glide image loading and caching library.

Like :

ImageView imageView = (ImageView) findViewById(R.id.imageView);

GlideDrawableImageViewTarget imageViewTarget = new GlideDrawableImageViewTarget(imageView);

Glide.with(this).load(R.raw.gif_image).into(imageViewTarget);
like image 44
Chirag Arora Avatar answered Oct 27 '22 23:10

Chirag Arora