호출 시스템 메일, 문자, 전화, 브라우저
1873 단어 메일을 보내다
1. 메일 보내기
/**
* ,
* */
public void sendEmail(String email)
{
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("plain/text");// !
intent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{email + ""});// String , String,
startActivity(Intent.createChooser(intent, " ?"));
}
2. 문자 보내기
/**
*
*
* */
private void sendSms() {
Uri smsToUri = Uri.parse("smsto:" + phoneNumber);
Intent mIntent = new Intent(android.content.Intent.ACTION_SENDTO, smsToUri);
mIntent.putExtra("sms_body", smsContent);
startActivity(mIntent);
}
3. 전화하기
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + number));//
startActivity(intent);
4. 브라우저
/**
*
* */
public void callExplorer(String url)
{
try{
Uri uri = Uri.parse(url); //url , : http://, catch
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
}catch(ActivityNotFoundException e){
ShowToast.show(this," , , ~");
}
}
권한:
<uses-permission android:name="android.permission.CALL_PHONE"/>
<uses-permission android:name="android.permission.SEND_SMS" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
java 메일 보내는 실례 코드 (이식 가능)웹 프로젝트를 예로 들면 코드는 이식할 수 있다 우선 메일을 가져와야 합니다.jar 패키지, 그리고 자신의 클래스 만들기 1: HTMLSender 클래스 2: MyAuthenticator 클래스 3: MailActi...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.