5

Apologies if this seem trivial.

I have been working on my first android app and would like advise on best way to implement a loading/splash screen attached.

My designer came up with is loading/splash screen and I am not sure how to implement this.

  1. Do I ask designer to create a .gif image I can just play or
  2. Do I code this in app in such as way that, the progress bar and bike moves from left to right and on completion of a task (remote async task), I manually push to 100% and the image to far right indicating completion.

Please note that the bike starts from left and continues to the right with progress indicator and %.

Is option 2 even possible and if yes, could you please point me to any resource I can use as a guide.

loading startup image

Thanks

Babajide Prince
  • 552
  • 1
  • 10
  • 25

1 Answers1

4

Generally a ProgressBar is used for purposes like this but I think, you should use a Seekbar cuz of the biker you've in your image. You can achieve this by customising it using different drawables.

Here are some helpful tutorials to help you do that :

Or

You can obviously use a custom ProgressBar as described here :

Community
  • 1
  • 1
Ashish Ranjan
  • 5,523
  • 2
  • 18
  • 39