Android 개발 에서 Intent.Action 의 다양한 흔 한 역할 집합
1 Intent.ACTION_MAIN
String: android.intent.action.MAIN
Activity 를 프로그램의 시작 으로 표시 합 니 다.비교적 상용 하 다.Input:nothing
Output:nothing
<activity android:name=".Main" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
2 Intent.Action_CALLStirng: android.intent.action.CALL
지정 한 전화 번 호 를 부르다.입력:전화번호.데이터 형식:tel:+phone number
Output:Nothing
Intent intent=new Intent();
intent.setAction(Intent.ACTION_CALL);
intent.setData(Uri.parse("tel:1320010001");
startActivity(intent);
Intent.ACTION 사용 하기CALL 시 AndroidManifest.xml 에3 Intent.Action.DIAL
String: action.intent.action.DIAL
다이얼 패 널 호출
Intent intent=new Intent();
intent.setAction(Intent.ACTION_DIAL); //android.intent.action.DIAL
intent.setData(Uri.parse("tel:1320010001");
startActivity(intent);
입력:전화번호.데이터 형식:tel:+phone number Output:Nothing
설명:Android 의 전화 걸 기 UI 를 엽 니 다.데 이 터 를 설정 하지 않 으 면 빈 UI 를 엽 니 다.데 이 터 를 설정 하면 action.DIAL 은 getData()를 호출 하여 전화 번 호 를 가 져 옵 니 다.
그러나 전화 번 호 를 설정 한 데이터 형식 은 tel:+phone number 입 니 다.
4 Intent.Action.ALL_APPS
String: andriod.intent.action.ALL_APPS
모든 응용 프로그램 을 보 여 줍 니 다.Input:Nothing.
Output:Nothing.
5 Intent.ACTION_ANSWER
Stirng:android.intent.action.ANSWER
호출 전 화 를 처리 하 다.Input:Nothing.
Output:Nothing.
6 Intent.ACTION_ATTACH_DATA
String: android.action.ATTCH_DATA
일부 데 이 터 를 지정 하 는 데 사용 하지 말고 다른 곳 에 첨부 해 야 합 니 다.예 를 들 어 이미지 데 이 터 는 연락처 에 첨부 해 야 합 니 다.Input: Data
Output:nothing
7 Intent.ACTION_BUG_REPORT
String: android.intent.action.BUG_REPORT
Dug 보고 서 를 표시 합 니 다.Input:nothing
output:nothing
8 Intent.Action_CALL_BUTTON
String: android.action.intent.CALL_BUTTON.
사용자 가'다이얼'버튼 을 누 르 는 것 과 같다.테스트 결과'통화 기록'이 나 왔 습 니 다.Input:nothing
Output:nothing
Intent intent = new Intent(Intent.ACTION_CALL_BUTTON);
startActivity(intent);
9 Intent.ACTION_CHOOSERString: android.intent.action.CHOOSER
activity 선택 기 를 표시 합 니 다.사용자 가 프로 세 스 전에 원 하 는 것 을 선택 할 수 있 도록 합 니 다.이에 대응 하 는 것 은 Intent.ACTION 입 니 다.GET_CONTENT.10. Intent.ACTION_GET_CONTENT
String: android.intent.action.GET_CONTENT
사용자 가 특수 한 종류의 데 이 터 를 선택 하고 되 돌 릴 수 있 도록 합 니 다. Input: Type
Output:URI
int requestCode = 1001;
Intent intent = new Intent(Intent.ACTION_GET_CONTENT); // "android.intent.action.GET_CONTENT"
intent.setType("image/*"); // , , video/*, */*
Intent wrapperIntent = Intent.createChooser(intent, null);
startActivityForResult(wrapperIntent, requestCode);
11 Intent.ACTION_VIEWString android.intent.action.VIEW
사용자 의 데 이 터 를 표시 하 는 데 사용 합 니 다.비교적 통용 되 며 사용자 의 데이터 형식 에 따라 해당 하 는 Activity 를 엽 니 다.
예 를 들 어 tel:13400010001 은 전화 걸 기 프로그램 을 열 고http://www.g.cn는 브 라 우 저 를 엽 니 다.
Uri uri = Uri.parse("http://www.google.com"); //
Uri uri =Uri.parse("tel:1232333"); //
Uri uri=Uri.parse("geo:39.899533,116.036476"); //
Intent it = new Intent(Intent.ACTION_VIEW,uri);
startActivity(it);
//
Intent intent = new Intent(Intent.ACTION_VIEW);
Uri uri = Uri.parse("file:///sdcard/media.mp4");
intent.setDataAndType(uri, "video/*");
startActivity(intent);
//
Intent it = new Intent(Intent.ACTION_VIEW);
it.putExtra("sms_body", " ...");
it.setType("vnd.android-dir/mms-sms");
startActivity(it);
12 Intent.ACTION_SENDTO String: android.intent.action.SENDTO
설명:문자 보 내기
//
Uri uri = Uri.parse("smsto:13200100001");
Intent it = new Intent(Intent.ACTION_SENDTO, uri);
it.putExtra("sms_body", " ...");
startActivity(it);
// ,
Uri uri = Uri.parse("content://media/external/images/media/23");
// ( )
Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra("sms_body", " ");
intent.putExtra(Intent.EXTRA_STREAM, uri);
intent.setType("image/png");
startActivity(it);
//Email
Intent intent=new Intent(Intent.ACTION_SEND);
String[] tos={"[email protected]"};
String[] ccs={"[email protected]"};
intent.putExtra(Intent.EXTRA_EMAIL, tos);
intent.putExtra(Intent.EXTRA_CC, ccs);
intent.putExtra(Intent.EXTRA_TEXT, "The email body text");
intent.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");
intent.setType("message/rfc822");
startActivity(Intent.createChooser(intent, "Choose Email Client"));
13 Intent.ACTION_GET_CONTENT
// requestCode
Intent intent = new Intent(Intent.ACTION_GET_CONTENT); //"android.intent.action.GET_CONTENT"
intent.setType(contentType); // String IMAGE_UNSPECIFIED = "image/*";
Intent wrapperIntent = Intent.createChooser(intent, null);
((Activity) context).startActivityForResult(wrapperIntent, requestCode);
//
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType(contentType); //String VIDEO_UNSPECIFIED = "video/*";
Intent wrapperIntent = Intent.createChooser(intent, null);
((Activity) context).startActivityForResult(wrapperIntent, requestCode);
//
int durationLimit = getVideoCaptureDurationLimit(); //SystemProperties.getInt("ro.media.enc.lprof.duration", 60);
Intent intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
intent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 0);
intent.putExtra(MediaStore.EXTRA_SIZE_LIMIT, sizeLimit);
intent.putExtra(MediaStore.EXTRA_DURATION_LIMIT, durationLimit);
startActivityForResult(intent, REQUEST_CODE_TAKE_VIDEO);
//
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType(contentType); //String VIDEO_UNSPECIFIED = "video/*";
Intent wrapperIntent = Intent.createChooser(intent, null);
((Activity) context).startActivityForResult(wrapperIntent, requestCode);
//
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType(ContentType.AUDIO_AMR); //String AUDIO_AMR = "audio/amr";
intent.setClassName("com.android.soundrecorder",
"com.android.soundrecorder.SoundRecorder");
((Activity) context).startActivityForResult(intent, requestCode);
// REQUEST_CODE_TAKE_PICTURE
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); //"android.media.action.IMAGE_CAPTURE";
intent.putExtra(MediaStore.EXTRA_OUTPUT, Mms.ScrapSpace.CONTENT_URI); // output,Uri.parse("content://mms/scrapSpace");
startActivityForResult(intent, REQUEST_CODE_TAKE_PICTURE);
이상 입 니 다.^ ^총결산
이상 은 이 글 의 모든 내용 입 니 다.본 고의 내용 이 여러분 의 학습 이나 업무 에 어느 정도 참고 학습 가 치 를 가지 기 를 바 랍 니 다.여러분 의 저희 에 대한 지지 에 감 사 드 립 니 다.더 많은 내용 을 알 고 싶다 면 아래 링크 를 보 세 요.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin의 기초 - 2부지난 글에서는 Kotlin이 무엇인지, Kotlin의 특징, Kotlin에서 변수 및 데이터 유형을 선언하는 방법과 같은 Kotlin의 기본 개념에 대해 배웠습니다. 유형 변환은 데이터 변수의 한 유형을 다른 데이터...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.