Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android 啟動默認的郵件客戶端,多附件的問題

android 啟動默認的郵件客戶端,多附件的問題

編輯:關於Android編程

目前開發的app中需要發送郵件,所以需要調用android默認的郵件客戶端,並需要添加多個郵件附件,我該通過哪個組件調用默認的客戶端?用什麼組件來支持多個附件的電子郵件?

是通過下面的哪一個?
(
Intent.ACTION_SEND,
Intent.ACTION_SENDTO,
Intent.ACTION_SEND_MULTIPLE, ...
)?

處理方法

 

過一遍android email的源代碼,能在結尾發現如下代碼

 

String subject = ...
String text = ...
ArrayList attachments = ...
Intent intent = new Intent(Intent.ACTION_SEND_MULTIPLE);
intent.putExtra(Intent.EXTRA_SUBJECT, subject);
intent.putExtra(Intent.EXTRA_TEXT, text);
intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, attachments);
intent.setClassName(com.android.email, com.android.email.activity.MessageCompose);
try {
startActivity(intent);
} catch (ActivityNotFoundException anfe) {
anfe.printStackTrace();
}
上面的代碼在 Android 4.0 到 Android 4.3時好用的,在Android 4.4 (KitKat) 版本中,activity的名字已經變成了 com.android.email.activity.ComposeActivityEmail, 


 

你可以試試,我沒試過...

 

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved