Android 이메일 intent


안드로이드에서 이메일 클라이언트만 보이게 하는 방법



<< XML 파일에서는 android.intent.action.SENDTO 를 사용 >>




<< 소스에서는 아래와 같이 사용 >>


Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("message/rfc822");
intent.putExtra(Intent.EXTRA_EMAIL, "aaa@a.com");
startActivity(Intent.createChooser(intent, "Send Email"));

+ Recent posts