-
Intent i = new Intent(Intent.ACTION_SEND);
-
//i.setType("text/plain"); //use this line for testing in the emulator
-
i.setType("message/rfc822") ; // use from live device
-
i.putExtra(Intent.EXTRA_SUBJECT,"subject goes here");
-
i.putExtra(Intent.EXTRA_TEXT,"body goes here");
-
startActivity(Intent.createChooser(i, "Select email application."));
'android' 카테고리의 다른 글
Bitmap 객체 jpg로 저장하기 (0) | 2011.06.21 |
---|---|
bitmap to jpg (0) | 2011.06.21 |
email intent 다중파일 전송 (0) | 2011.06.21 |
android email intent (0) | 2011.06.21 |
android facebook 연동하기(1) (0) | 2011.06.21 |