【 전 】 Intent 를 사용 하여 시 나 웨 이 보 등에 그림 이나 문 자 를 공유 합 니 다.

안 드 로 이 드 MMS 컬러 편지 또는 Gmail 로 사진 보 내기

Intent i = new Intent(Intent.ACTION_SEND);
i.putExtra(Intent.EXTRA_STREAM,imageUri);//        uri
i.setType("image/jpeg");
startActivity(Intent.createChooser(i,TITLE_TIP));//TITLE_TIP               

= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_SUBJECT,SOMETHING_TITLE)//Gmail     ,  
intent.putExtra(Intent.EXTRA_TEXT,SOMETHING_TEXT_BODY);//    
startActivity(Intent.createChooser(intent,TITLE_TIP);//              

이렇게 하면 모든 intent - filter 의 action 을 android. intent. action. SEND 로 설정 한 Activity 는 선택 한 프로그램 으로 목록 에 나타 납 니 다.

좋은 웹페이지 즐겨찾기