Skip to content
Codeplayon
  • Home
  • AI
  • Blog
  • technology
  • Tech Interview
  • Apps
Android splash screen Android login screen design

Android splash screen UI design 2022

December 27, 2024October 27, 2018 by Parmit Singh

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 base build. 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

 

 

Categories Android tutorial Tags Android Awesome Login Screen Animations, Android Splash Screen Animation, Android splash screen awesome, Android splash screen awesome UI design, android splash screen code, android splash screen size, splash screen awesome UI design
Android login screen design with animation – Android Studio 2022
  • 5g technology
  • AI
  • Android development
  • Android Kotlin
  • Android tutorial
  • Apps
  • Blockchain
  • Blog
  • Data Structure
  • E-learning
  • entertainment
  • Fitness
  • Flutter Tutorial
  • gaming
  • iOS
  • IoT technology – internet of things
  • Jetpack Compose
  • LTE Tutorial Long-Term Evolution 
  • news
  • social networking
  • Sponsored Post
  • Streaming
  • Tech Interview
  • technology
  • Uncategorized
  • Website Reviews
Sitemap.Html
  • Why OpenAI Killed Atlas: The Strategic Shift to ChatGPT Work
  • Boom Sports Promo Code FOXSPORTS: Play $5, Get $40 Free
  • How IObit Uninstaller Helped Me Completely Remove Programs and Leftover Files
  • Inside the SpaceX AI Handset Prototype: Truth vs. Denial
  • Coding on the Go: Master Cursor’s New iOS Mobile App
© 2026 Codeplayon • Built with GeneratePress