Skip to content Skip to sidebar Skip to footer

How To Create Loading Screen In Android?

I am developing an android app, in which I need a loading screen like the one given below. In this screen I want a custom progress bar and a loading text in the centre of the scree

Solution 1:

@Ganpat Kaliya

Please check Transparent progress dialog on Android

Just set

setTitle(Loading...);

Solution 2:

I would suggest you to use the custom Progress dialog. The purpose of using progress dialog is that as you wanted the screen to be blur, so when ever you would bring Progress dialog to front the activity would get blur , additionally it is highly customize able , you can do what you want.

A very useful explanation is here and here. please check them out and apply.

Post a Comment for "How To Create Loading Screen In Android?"