Action : 수행할 액션 이름(ACTION_DIAL)
Data : 수행할 데이터의 URI(tel:)
Category : 수행할 액션에 대한 추가적인 정보
Type : 수행할 인텐트 데이터의 명시적인 타입(MIME 타입)(video/mpeg)
Component name : 대상 컴포넌트의 완전한 클래스 이름
Extras : 인텐트를 다루는 컴포넌트에 추가적으로 전달한 한 쌍의 키/값
Action | 설명 |
ACTION_VIEW | 데이터의 URL로 가장 적절한 액티비티를 호출하는 액션 content://contacts/people/1 |
ACTION_DIAL | 전화 다이얼 액티비티를 호출하는 액션 content://contacts/people/1 tel:0101235678 |
ACTION_CALL | 전화 액티비티를 호출하는 액션 tel:0101235678 |
ACTION_WEB_SEARCH | 웹 검색 액티비티를 호출하는 액션 |
ACTION_SEARCH | 검색 액티비티를 호출하는 액션 |
Intent intent = new Intent(this, IntentCallee.class);
intent.putExtra("name", "gildong");
intent.putExtra("age", 30);
startActivity(intent);
Intent intent = getIntent();
String name = intent.getStringExtra("name");
int age = intent.getIntExtra("age",20);
[Android] 뷰 (0) | 2011.07.26 |
---|---|
[Android] 컴포넌트 활성화 및 비활성화 (0) | 2011.07.26 |
[Android] 브로드캐스트 리시버 / 콘텐트 프로바이더 (0) | 2011.07.26 |
[Android] Service (0) | 2011.07.25 |
[Android]액티비티 생명주기 (0) | 2011.07.23 |
댓글 영역