I ma developing an app, which at the moment when it is loading from the onCreate point, I just have a black screen (until the app gets its footing). Looking at other apps they have a company logo or cool image that pops up for a few seconds, can someone tell me how to do this please?

And if you can set it to display for a minimal time?

link|improve this question

60% accept rate
feedback

3 Answers

up vote 1 down vote accepted

Create a new activity that displays the image for a few seconds and redirects to your main activity:

public class SplashActivity extends Activity
{
    private static final long DELAY = 3000;
    private boolean scheduled = false;
    private Timer splashTimer;

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.splash);

        splashTimer = new Timer();
        splashTimer.schedule(new TimerTask()
        {
            @Override
            public void run()
            {
                SplashActivity.this.finish();
                startActivity(new Intent(SplashActivity.this, MainActivity.class));
            }
         }, DELAY);
       scheduled = true;
    }

    @Override
    protected void onDestroy()
    {
        super.onDestroy();
        if (scheduled)
            splashTimer.cancel();
        splashTimer.purge();
    }
}

Set your image as the background for this activity. Hope that helps. Good luck!

link|improve this answer
1  
But please use Handler instead of TimerTask. – inazaruk Jun 19 '11 at 17:44
Did you test this code on emulator or real device? There's NO Timer on Android! – W.N. Jun 20 '11 at 2:16
Timer is not an android object, its a java object. It is a working code in one of my apps. It works on both a device and an emulator. Add the following to your import list and you will be fine: import java.util.Timer; import java.util.TimerTask; – Srichand Yella Jun 20 '11 at 6:13
feedback

This start up image also known as 'splash screen'. Here you can find how to make splash screen.

link|improve this answer
feedback

you can just do a simple search on the stackoverflow site , and you will find your happyness ; refer this

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.