첨부 파일이있는 이메일을 보내기위한 Android Intent 중복 가능성 : 내부 저장소의 이메일 수신자가 이메일을 수신하고 있지만 첨부 파일은 없습니다. 여기에 코드가 있습니다. 전문가가 내가 어디로 잘못되었는지 알고 있습니까? Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("text/plain"); intent.putExtra(Intent.EXTRA_EMAIL, new String[] {"email@example.com"}); intent.putExtra(Intent.EXTRA_SUBJECT, "subject here"); intent.putExtra(Intent.EXTRA_TEXT, "body text"); File root = E..