데이터 넘기기
----------------------------------------------
// Intent 생성
Intent intent= new Intent(context, ClassName.class);
----------------------------------------------
// Intent 생성
Intent intent= new Intent(context, ClassName.class);
// putExtra("넘길변수명", 넘기는 int값)
intent.putExtra("variable", 1000);
// Activity 시작
context.startActivity(intent);
데이터 받기
-----------------------------------------------
// Intent get
Intent intent = new Intent(this.getIntent());
// getIntExtra("받는변수명", 기본값)
int i = intent.getIntExtra("variable", 1);
'Language > Android' 카테고리의 다른 글
AppWidget에서 ProgressBar 띄우기... (1) | 2010.07.01 |
---|---|
키보드 이벤트 (0) | 2010.06.28 |
공통 레이아웃(Layout) Include 처럼 사용 하기 (1) | 2010.06.25 |
알람 AlramManager (0) | 2010.06.21 |
Activity 실행되면서 softkeyBoard 띄우기 (0) | 2010.06.18 |