Splash Screen - Android Studio Tutorial

preview_player
Показать описание
🏆 My Online Courses
⭐Discount Coupon: LAUNCH-STEVDZA-SAN

🐱‍👤 Wanna become a member? Join!

📸 Instagram

Essentially Splash screen is startup screen which is normaly shown in the first few seconds of running your application. It's purpose is to show your brand to users before launching the rest of the app. You should work on it's design, but remember do not over do it, it should look simple.

You should always use VECTOR file/asset for your Splash screen, because it is density independent, and it will not look pixalated on larger resolutions. Avoid using .png .jpeg images, because you would need to import it in different sizes to match various devices. Vectors are always prefered.

And in this video you will learn how to create and implement the logic for Splash screen, it's very easy, so not need to worry. :)
Рекомендации по теме
Комментарии
Автор

Wow, short, informative, everything a programmer in a rush needs

destinyjames
Автор

This is by far one of the best tutorial videos that I have seen in a while.

It get strait to the point, the video is clear, and the host voice is clear and easy to understand!

10/10 quality

intre_pe
Автор

Man, I am just about to end my Android Course of this semester and from past few days, you literally have been saving my life. So small, simple and perfectly working, smoothly working steps, I have used your Font video, Recycler View, Recycler View with Database and now this one, all works perfectly. Thanks a million ton 💛🙌🙌🙌

kanzanaveed
Автор

I think this may be the best splash tutorial on youtube! kept it simple and actually talked. Tysm

alpha
Автор

This is the first video on YouTube I see which has more that 178K views, 3K likes and 0 dislikes. Realy amazing. Thank you for crystal clear explanation.

vitikahappy
Автор

Short, concise, clear, and confident. Congrats! +1

rohanbari
Автор

I am new to android. But I haven’t seen a wonder tutorial same like this. Very short n very informative .

entemolu
Автор

I think this is the best splash tutorial in youtube

ranjiniramath
Автор

i learned a lot in limited minutes. Love you

ahmeedev
Автор

I think this was the most efficient video I have seen in a long time

bonvoy-travel
Автор

Short, simple, informative. Thankyou buddy exactly what I needed!!

chandankashyap
Автор

problem noted there is nothing on the video description, , no file to download

allanmwangi
Автор

There is a white screen that appears before the custom splash vector that you have used here, your custom vector asset should ideally appear first(not after the white screen). How do we do that? because that's how most big apps like YouTube, Google Drive, Twitter, etc. do it

anudeepananth
Автор

Damn Bro Thanks, You really saved me there with my assignment

a.luthfiridwan
Автор

SplashScreens didn't created for this purpose. You are implementing splashscreens with time but if you look at google's documentation, you see it doesn't must be like that. Use advantage of loading app duration for the benefit of your brand. You shouldn't create splash screen depends on time. If you do it, the opening scenario will be like this:
1- splash screen (3000 ms)
2- app loading time (whatever it takes)

As you see, it is not best practice for splashscreen

umitdemir
Автор

Thanks. Your videos are really nice. I am learning daily little little totaly big tricks by you, thanks a lot. Please continue your videos.

emretaskran
Автор

Great,
I learned how to use finish()

kisanshah
Автор

For Java;

final Handler handler = new
handler.postDelayed(new Runnable() {
@Override
public void run() {
Intent intent = new Intent(getApplicationContext(), MainActivity.class);
startActivity(intent);
}
}, 200);

mahmutbedir
Автор

this is exactly what i was looking for thank you very much

davidtzirima
Автор

Thanks Bro ! the method of your implementation in Kotlin, also served me in Java.
In a Project "Android Studio".

NatxDoe
welcome to shbcf.ru