Please assign a menu to the primary menu location under MENU

Codeplayon
Codeplayon
  • Home
  • DSA
  • Jetpack
  • Flutter
  • Android
    • Android Tutorials
    • Android development
  • Kotlin
  • 5G
  • 4G LTE
    • IoT
  • e learning
  • Blog
HomeAndroid tutorialAndroid splash screen UI design 2022
Android tutorial

Android splash screen UI design 2022

Codeplayon5 years agoJuly 10, 2022Android Awesome Login Screen AnimationsAndroid Splash Screen AnimationAndroid splash screen awesomeAndroid splash screen awesome UI designandroid splash screen codeandroid splash screen sizesplash screen awesome UI design
Android splash screen Android login screen design

Hey Everyone in this Android tutorial I am sharing with you how to create an animated android splash screen to make a good UI. In android it is very easy and awesome you can follow just some steps for the Android splash screen and awesome UI design let’s start on a project. In this project, i am using a third-party library to make animations on the screen. and after five seconds the screen redirect on the next login screen.

You can just follow the below simple step and make an android splash screen animation. Hara, we used a third-party dependency for splasher add this dependency in your Gradle. And Syn your project.

Android splash screen animation.

Step 1:- Start Android Studio

Step 2:- To Create a New Project Project Click On ==>File ==>NEW ==>New Project.And Create an Activity in your project.

Step 3:- Add dependencies in your app basebuild. Gradle

dependencies {
        compile 'com.github.wailbabou:Splasher:0.1.2'
   
}

after adding dependency syn your proje to get the all class of dependency and create a new activity with the name is spleshscreenactivity. And user bewlo code to adding animation, set color, set image.

Step 4:- Open your java class and add this code.

public class SpleshScreenActivity extends SplasherActivity {
    @Override
    public void initSplasher(SplasherConfig config) {
        config.setReveal_start(Const.START_CENTER)
                //---------------
                .setAnimationDuration(3000)
                //---------------
                .setLogo(R.drawable.logo_ic)
                .setLogo_animation(Techniques.BounceIn)
                .setAnimationLogoDuration(5000)
                .setLogoWidth(400)
                //---------------
                .setTitle("Codeplayon.com")
                .setTitleColor(Color.parseColor("#ffffff"))
                .setTitleAnimation(Techniques.Bounce)
                .setTitleSize(30)
                //---------------
                .setSubtitle("Learn , Explore and Share")
                .setSubtitleColor(Color.parseColor("#ffffff"))
                .setSubtitleAnimation(Techniques.FadeIn)
                .setSubtitleSize(20)
                //---------------
                .setSubtitleTypeFace(Typeface.createFromAsset(getAssets(),"diana.otf"))
                .setTitleTypeFace(Typeface.createFromAsset(getAssets(),"stc.otf"));

        //Example of custom view ..
//        config.setCustomView(R.layout.custom_view)
//                .setReveal_start(Const.START_CENTER)
//                .setAnimationDuration(5000);
//        getCustomView().findViewById(R.id.textView);

    }
    @Override
    public void onSplasherFinished() {
        Toast.makeText(this, "Go to the next activity", Toast.LENGTH_SHORT).show();
        Intent intent=new Intent(SpleshScreenActivity.this,LogInActivity.class);
        startActivity(intent);
        finish();
    }
}

now the animation is ready Run your App and test to see the UI. Thanks for reading us reads more solutions and designs in android. And it works all android splash screen sizes for mobile tablets also.

Read More Tutorial

  • Android Studio Bumblebee New Features 2022
  • Codeplayon Jetpack Compose Tutorial
  • Codeplayon Android Tutorial
  • Codeplayon Flutter Tutorial
  • Codeplayon on Github

Tags :Android Awesome Login Screen AnimationsAndroid Splash Screen AnimationAndroid splash screen awesomeAndroid splash screen awesome UI designandroid splash screen codeandroid splash screen sizesplash screen awesome UI design
share on Facebookshare on Twittershare on Pinterestshare on LinkedIn share on Tumblrshare on Redditshare on VKontakteshare on Email
add a comment
CodeplayonOctober 27, 2018
android user permission is allow or not
Android login screen design with animation – Android Studio 2022
profile for Codeplayon on Stack Exchange, a network of free, community-driven Q&A sites

find me on socials

latest posts

A Guide to the Best Disinfectant Floor Cleaner for Your Home

5 days ago

The 3 Best Websites for Finding House Cleaning Jobs

5 days agoSeptember 18, 2023
What is a Nanomachine

What is a Nanomachine? When it release Applications

2 weeks agoSeptember 7, 2023
android security settings

5 Simple Ways to Maximize Cybersecurity in Everyday Life

3 weeks agoSeptember 13, 2023
Google News
Google News

Search

Contact Info

Contact information that feels like a warm, friendly smile.

Phone:9876543210
Email:info.codeplayon@gmail.com
Website:Codeplayon

popular posts

Joinpd

JoinPD.com – Peardeck Login Full Guide Details 2023

3 weeks agoSeptember 18, 2023
Best StreamEast live Alternatives For Free Sports Streaming

streameast.live For NFL Free Sports Streaming And Streameast Alternatives

7 months agoFebruary 15, 2023
Disneyplus.com/begin

Disneyplus.com begin code for Disney+ account login 2022

2 years agoFebruary 15, 2023
  • A Guide to the Best Disinfectant Floor Cleaner for Your Home
  • The 3 Best Websites for Finding House Cleaning Jobs
  • What is a Nanomachine? When it release Applications
  • 5 Simple Ways to Maximize Cybersecurity in Everyday Life
  • What is facebook marketplace? how does work

Copyright © 2023 codeplayon

Go to mobile version