Programming/Android

Handler 사용으로 다음 페이지로 3초후 넘기기

ilovecoffee 2014. 10. 30. 22:58

        Handler handler = new Handler();
        handler.postDelayed(new Runnable() {

            @Override
            public void run() {
                // TODO Auto-generated method stub
                Intent i = new Intent(MainActivity.this,
                        calendar_Activity.class);
                startActivity(i);
                finish();
            }
        }, 3000);