timer를 이용한 자동 페이지 전환 splash :: 소림사의 홍반장!

timer를 이용한 자동 페이지 전환 splash

2012. 3. 26. 13:25 - 삘쏘굿

       
        //1. TimerTask
        TimerTask task = new TimerTask() {
			
			@Override
			public void run() {
				// TODO Auto-generated method stub
				Log.i("tag", ">>>>>>>>");
				
				Intent intent = new Intent(getApplicationContext(), LoginActivity.class);
				startActivity(intent);
			
			}
		};
 
        
        //2. Timer
        Timer timer = new Timer();
        timer.schedule(task, 3000);  // 바로실행하려면 ==> task.run();

    }//end onCreate
    
    protected void onStop() {
		super.onStop();
		finish();
	}	//	end onStop()

다른 카테고리의 글 목록

Dev. 안드로이드/참고소스 카테고리의 포스트를 톺아봅니다