Android: "메일박스에 공유"구현

이것은 메일박스에 간단하게 공유하는 것으로 자신의 그림을 첨부할 수 있다.

  
  
  
  
  1. //cacheDir
  2. // File f
  3. File cacheDir = new File(android.os.Environment.getExternalStorageDirectory(), getString(getApplicationInfo().labelRes)); 
  4. File f = new File(cacheDir, "image_name.jpg"); 
  5.  
  6. Intent intent = new Intent(Intent.ACTION_SEND);
  7. intent.setType("image/jpeg");
  8. intent.putExtra(Intent.EXTRA_TEXT, "Email body over here");
  9. intent.putExtra(Intent.EXTRA_SUBJECT, "Email subject over here");
  10. intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(f));
  11. startActivity(Intent.createChooser(intent, "Share via:"));

좋은 웹페이지 즐겨찾기