Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a splash screen. I just want it to wait for 1 or 2 sec and then move on to the next activity just then once. I understand there are many ways including handler classes and java.util.timer implementation. But which is the easiest and most light way to do just this. Thanx in advance.

share|improve this question
How about this one? stackoverflow.com/questions/11455455/… – fiddler Aug 28 '12 at 13:30
i am not doing any animations or repeated actions for that matter. Thats why i asked for a much simpler solution. Just to go to the next screen after 2 sec. – Abhinav Aug 28 '12 at 13:52

2 Answers

up vote 2 down vote accepted

Use below Code for that.

Splash_Screen_Activity.java

public class Splash_Screen_Activity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.splash_screen);

        final Handler handler = new Handler();
        handler.postDelayed(new Runnable() {
            public void run() {
                // TODO: Your application init goes here.
                Intent mInHome = new Intent(Splash_Screen_Activity.this, InvoiceASAPTabActivity.class);
                Splash_Screen_Activity.this.startActivity(mInHome);
                Splash_Screen_Activity.this.finish();
            }
        }, 3000);
    }
}
share|improve this answer
Thats what i was talking about. Worked like a charm. Thanx a lot!! – Abhinav Aug 28 '12 at 15:40

user timer class to make splash screen in android.

share|improve this answer
i am not doing any animations or repeated actions for that matter. Thats why i asked for a much simpler solution. Just to go to the next screen after 2 sec – Abhinav Aug 28 '12 at 13:52
then you should go for a thread with handler. – Rushabh Patel Aug 29 '12 at 6:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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