Skip to main content

Splash Screens : Doing It The Right Way !


An Android application takes a little amount of time to start up , especially during the cold start i.e. the first time it runs on the device.

The very idea of splash screen irritates me. I mean they just waste your time and show you a highly crafted logo. As an Android Developer, just kidding I am just a beginner, when I see splash screen I just imagine that some poor developer had to add a three second delay to the code, just under the society's pressure.

Every time I open an application I have to just stare to a random picture for 3 seconds without any reason. I mean I just know which application I have opened and what it does, just let me use the app.

According to the Google Recommendation :

Google advocates that one should use a Splash Screen according to the Material Design Specs.
It’s still not a good idea to use a splash screen that wastes a user’s time. Please don’t do that.

Doing It The Right Way! :

However Android app do take some time to start up , especially on a cold start. There is a delay that you may not able to avoid . Instead of just leaving the blank screen why not just show user something nice. This is the approach Google is advocating. Don't waste user's time , but also don't show them blank  section of the app, the first time it loads.

If you look at recent updates to Google apps, you’ll see appropriate uses of the splash screen. Take a look at the YouTube app, for example.





The amount of time you just spent looking the splash screen was just the time it took to configure the application.This is on a cold launch, too, which means this is the slowest launch possible. If the app is cached, the splash screen will go away almost immediately.

Implementing Splash Screen:


Implementing a splash screen the right way is a little different than you might imagine. Its not like loading an activity and add a 3 second delay and then load the Main/Home activity. The splash view that you see has to be ready immediately, even before you can inflate a layout file in your splash activity.

So you will not use a layout file. Instead, specify your splash screen’s background as the activity’s theme background. To do this, first create an XML drawable in res/drawable.



Here, I’ve set up a background image.

Next, I will set this as my splash activity’s background in the theme. Now just navigate to your styles.xml file and add a new theme for your splash activity:





 In your new SplashScreen, set the window background attribute to your XML drawable. Configure this as your splash activity’s theme in your AndroidManifest.xml:





Finally, MainActivity (which is supposed to be SplashActivity) class should just forward you along to your main activity:








Notice that you don’t even set up a view for this MainActivity. The view comes from the theme. When you set up the UI for your splash activity in the theme, it is available immediately.

If you did have a layout file for your splash activity, that layout file would be visible to the user only after your app has been fully initialized, which is too late. You want the splash to be displayed only in that small amount of time before the app is initialized.


Armed with this knowledge, make your splash screen work the right way. Don’t waste the user’s time, but give them something nice to look at while they wait.






Comments

Popular posts from this blog

How to Hard Reboot an iPhone or iPad

No one can easily doubt over the engineering efforts made by Apple. Despite of that there are some chances that your iPhone or iPad might stop working, by which I mean it stops responding to your touch. At that moment you need to reset your iPhone and considering the worst scenario no matter how long you hold the power button the power off option doesn’t show up. This condition may arise due to any software bug or unwanted behaviour of any app. In such cases there is  a straightforward method to resolve it , which involves forcing your device to reboot. This method is termed as reset or hard restart which is done by holding down the combination of 2 buttons simultaneously for 10 seconds or more. By doing so all running processes will be cleared and the device will be rebooted forcibly. Talking about iPhone 7 and iPhone 7 Plus, the Home button is not a physical button anymore. So the button combination is bit different in these devices than their predecessor. ...

How to install iOS 11 public beta

On June 5, 2017 Apple unveiled its 11 th major release of the iOS Operating System, iOS 11 at the  company's Worldwide Developers Conference. At the same time Apple released first iOS 11 public beta version for iPhone and iPad. Recently Apple released the fourth iOS 11 public beta. A large number of Apple devices support the beta release and I’m going to tell you how to get it. It is quite easy to install iOS 11 beta release but it is bit risky too. The beta releases are subjected to be unstable. You can even lose your all data , so I recommend you do not install this unless you are completely aware of what you are doing. According to me , installing the beta versions of iOS 11 on your primary device is a bad idea as it may lead to  fraught experience, so I recommend you to install the beta versions on your Secondary device. If these warnings have not deterred you then before installing the iOS 11 beta release make sure to take the complete backup of y...

Bezel Less Display: Tech Trend of 2017

With the long- rumoured launch of Samsung Galaxy S8 and S8+, bezel less display is becoming the new tech trend in the tech world !!  Bezel-less is becoming all the rage, with almost every manufacturer pushing out bezel-less devices to attract consumers. There are many point to consider if bezel less is becoming the new tech trend of 2017. While Xiaomi started the trend of bezel-less smartphone with Mi Mix , LG followed soon with their flagship G6 coming up with almost bezel-less design, and now even the galaxy S8 and S8+ has been announced with bezel-less display and it definitely looks amazing. With almost every other deice boasting about bezel-less display, I think its time to take a deeper look into how bezel less is becoming tech trend of 2017 and a lot of its pros and cons. Xiaomi surprised the world when they announced the Mi Mix and the phone looks absolutely amazing and if you like it on camera believe me it looks a way better in reality. Lets ...