Search code examples
javaandroidandroid-intentchronometer

Welcome activity in android


I am making an app in android for which I need a welcome activity. I want to intent my welcome activity automatically after five seconds.Should i use a chronometer for that?


Solution

  • Splash screen is not recommended if you must have to use it.

    if you are going to any start-up operation you can us splash screen.

    Anyway as per your situation

        new Handler().postDelayed(new Runnable() {
    
        @Override
        public void run() {
            Intent startLandingPageActivity = new Intent(MainLauncher.this, LandingPageActivity.class);
            startActivity(startLandingPageActivity);
    
        }
    }, 5000);