public class testActivity extends TabActivity {

 /** Called when the activity is first created. */
 private String aet = null;
 public TabHost tabHost = null;
 
 public void onNewIntent(Intent it){
  
  aet = it.getStringExtra("re");
  
 }

 @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        tabHost = (TabHost) findViewById(android.R.id.tabhost);
  
        Intent one = new Intent(this, file.class);
  tabHost.addTab(tabHost.newTabSpec("flie")
    .setIndicator("탭1 ")
    .setContent(one));
  
  Intent two = new Intent(this, setting.class);
  tabHost.addTab(tabHost.newTabSpec("setting")
    .setIndicator("탭2")
    .setContent(two));
  
  tabHost.setCurrentTab(0);
  
    }
   
}

 

소스 입니다.여기서 문제가 생기는대요 String aet로 값을 저장한다음

tabActivity로 자료를 받아 이 자료를 서브 Activity의 탭1이라고 하는 Activity로 데이터를 넘겨주고 싶은대요

방법이 없을까요? Intent one 에 putExtra, addFlag 가 안먹히는지는 알고있는대

이거 말고 자료 넘겨주는 방법을 몰라서 슬프군요.......ㅠ