본문 바로가기

Daily Sample

[Day3] setActivityForResult 으로 새창 열기 및 데이터 전달 소스

TITLE : setActivityForResult TEST
Date : 04/13/2010
Writen by Dayyoung
Description :
This is Source that Open new Activity with current Data by setActivityForResult
setActivityForResult 으로 새창 열기 및 데이터 전달
Download : 


1. 메인엑티비티


2. 번들 객체에 스트링 값 저장

Bundle myData = new Bundle();
myData.putString(“key”, textView.getText().toString());
intent.putExtras(myData);

3. 새창에서 번들객체 호출

Bundle myBundle = intent.getExtras();
String Data =  myBundle.getString(“key”);


 

예제에서는 String값만 번들에 추가하였는데 실제로는 배열이나 Vector값도 추가될 수 있습니다.

Creative Commons License
이 저작물은 크리에이티브 커먼즈 저작자표시 3.0 Unported 라이선스에 따라 이용할 수 있습니다.