我想通過電子郵件意向從sdcard發送.apk文件,但沒有獲得附件。如何通過電子郵件發送Android SDK中的.apk文件通過電子郵件itent?
見下文codei試試這個代碼,但不是爲我工作..
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setType("text/plain");
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,
new String[] { "email id" });
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,
"Test Subject");
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,
"go on read the emails");
Log.v(getClass().getSimpleName(),
"sPhotoUri=" + Uri.parse("file:/" + "/sdcard/obb/rr.apk"));
emailIntent.putExtra(Intent.EXTRA_STREAM,
Uri.parse("file:/" + "/sdcard/obb/rr.apk"));
startActivity(Intent.createChooser(emailIntent, "Send mail..."));
這個代碼表示無法連接,而不是獲取郵件。
請嘗試[this1](http://stackoverflow.com/a/18552517/1289716) – MAC 2014-08-28 06:53:47