Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6355917
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T22:51:49+00:00 2026-05-24T22:51:49+00:00

I have a splash screen and use a timer thread to display it for

  • 0

I have a splash screen and use a timer thread to display it for 2.5 seconds, that works fine but I get a blank page. If I remove the timer thread, my page displays perfectly.

  Thread splashTimer = new Thread(){
        public void run(){
            try{
                int splashTimer = 0;
                while (splashTimer < 2500){
                    sleep(200);
                    splashTimer = splashTimer + 200;
                    Intent navMainPage = new Intent("com.extempor.cheetah.CLEARSCREEN");
                    startActivity(navMainPage);

                }
            }
            catch(InterruptedException e){
                e.printStackTrace();
            }
            finally{
                finish();
            }


    }


};
splashTimer.run();

The page when it displays correctly shows a png image. I tried just a textview but nothing works while I have the timer thread. I’m using 2.3.3 and Eclipse 3.7

It seems that the timer thread is the standard way to show a splash screen, but why is no content displayed when I use it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T22:51:49+00:00Added an answer on May 24, 2026 at 10:51 pm

    First and foremost you should absolutely not make your users wait for any amount of time that is not absolutely necessary. If you need to do some kind of time consuming work at start up then show a splash screen during that and use a handler callback to hide it when the work is complete. Making your users wait for 2 or 3 seconds for no reason just so you can show them a pretty picture is silly and will turn people off from using your application IMO.

    I achieved this effect using a fadeOut animation.

    see this question for example animation code. If you use the code from that example you can use something like this to delay it for 2 seconds

        Runnable r = new Runnable(){
            public void run(){
                introLayout.startAnimation(fadeOutAnim);
                introLayout.setVisibility(View.GONE);
    
            }
        };
        Handler h = new Handler();
        h.postDelayed(r, 2000);
    

    Again please really consider using a splash only if you have some real work to do, don’t force your users to wait for 2 seconds with no good reason.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a splash screen image that I display with splash.showFullScreen() but it doesn't
I have a label on a splash screen that is displayed for 4 seconds.
I have a splash screen that implements MainScreen, and I am trying to use
I still have a problem with the splash screen. I don't want to use
I have implemented a Splash Screen according to WiredPrairie unmanaged c++ splasher class. But
I have a really standard splash screen, just a simple Default.png, but for whatever
I have an application. First I display a splash screen, a form, and this
Like many people, I have a splash screen that animates off to reveal the
I have a splash screen which appears for a few seconds before the application
I have a question that I have a splash screen in my android app

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.