One Step for A Little Progress

안드로이드 탭뷰(TabView) 탭에 액티비티 넣기(탭에 인텐트 넣기) 본문

Develop/Android

안드로이드 탭뷰(TabView) 탭에 액티비티 넣기(탭에 인텐트 넣기)

whistler.n 2012. 3. 30. 12:51

탭은 이미 생성이되어있다고 가정하고

탭에 들어가는 content에 intent만 넣어주면 된다.

bold 처리된 부분이 그 부분이다.



TabHost mTabHost=getTabHost(); mTabHost.setup(); //initialize TabHost.TabSpec spec; Intent intent; intent=new Intent().setClass(this, Tab_MainActivity.class); spec=mTabHost.newTabSpec("main").setIndicator("Main").setContent(intent); mTabHost.addTab(spec);
Comments