Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("plain/text");
String[] address = {""}; //주소를 넣어두면 미리 주소가 들어가 있다.
intent.putExtra(Intent.EXTRA_EMAIL, address);
intent.putExtra(Intent.EXTRA_SUBJECT, "제목");
intent.putExtra(Intent.EXTRA_TEXT, "보낼 내용");
intent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:/mnt/sdcard/test.jpg")); //파일 첨부
startActivity(intent);
'안드로이드' 카테고리의 다른 글
[android] dp 값을 px, px 값을 dp 값으로 변환 (0) | 2013.03.25 |
---|---|
[android] 힙 메모리 늘리기 (3.0)이하 사용 가능 (0) | 2013.03.20 |
[android] 사진, 동영상 파일 갤러리에 저장 (0) | 2013.02.28 |
[android] webView 띄우기 (0) | 2013.02.28 |
[android] view,button등 동적 생성 (0) | 2013.02.28 |