[Intent #1] Activity에 기본 데이타 전달하기
반응형
Start Activity를 하고 시작되는 Activity에 데이타를 전달하는 방법입니다.
매우 간단합니다.
A activity : 호출시키면서 데이타 전달하는 녀석
xxxxxxxxxxxx
{
Intent intent = new Intent(PlayerActivity.this, B.class);
intent.putExtra("Data_Int", 10);
intent.putExtra("Data_String", "xxxxxxx");
intent.putExtra("Data_String", "xxxxxxx");
startActivityForResult(intent, 0);
}
B Activity : 데이타를 받는 녀석
xxxxxxxxxxxx
{
}
B Activity : 데이타를 받는 녀석
xxxxxxxxxxxx
{
Intent intent = getIntent();
String t1 = intent.getStringExtra("Data_String");
int aaa = intent.getIntExtra("Data_Int", 0); => '0'은 default값이다. 가져오지 못하는 경우 aaa에 0을 넘겨준다.
String t1 = intent.getStringExtra("Data_String");
int aaa = intent.getIntExtra("Data_Int", 0); => '0'은 default값이다. 가져오지 못하는 경우 aaa에 0을 넘겨준다.
}
이렇게만 하면 데이타 전달이 된다.
이렇게만 하면 데이타 전달이 된다.
반응형
'IT > Android[안드로이드]' 카테고리의 다른 글
[DateFormat] 시간정보 가져오기 (2) | 2010.12.03 |
---|---|
[Activity #1] onSaveInstanceState() (0) | 2010.12.02 |
[Intent #2] Activity간 정보 전달 [Parcelable] (0) | 2010.12.01 |
[ListView #4] 사용자 Layout을 이용한 List (0) | 2010.11.25 |
[ListView #3] ListActivity상속 받아 ListView 보이기 (0) | 2010.11.25 |