android开发⽂件分享到应⽤,Android实现⽂件分享功能(共享
多个⽂件)
效果如图:
神⼀样的代码:
针对image代码如下:
Intentshare=newIntent(Intent.ACTION_SEND);
share.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));//此处⼀定要⽤Uri.fromFile(file),其中file为File类型,否则附件⽆法发送成功。
share.setType("image/jpeg");
ateChooser(share,"Share Image"));
针对 text代码如下:
Intentshare=newIntent(Intent.ACTION_SEND);
share.setType("text/plain");
share.putExtra(Intent.EXTRA_TEXT,"I'm being sent!!");
ateChooser(share,"Share Text"));
//以下代码为我在应⽤中使⽤的
Intent share = new Intent(Intent.ACTION_SEND);
share.putExtra(Intent.EXTRA_STREAM,
Uri.fromFile(file));
share.setType("*/*");//此处可发送多种⽂件
ateChooser(share, "Share"));
//共享多个⽂件代码如下
安卓intent用法
ArrayList uris = new ArrayList();
for(int i = 0; i < size; i++){
File file=((selectedItemIndexes[i]).get("file");
mimeType = getMIMEType(file);
Uri u = Uri.fromFile(file);
uris.add(u);
}
boolean multiple = uris.size() > 1;
Intent intent = new Intent(multiple ? t.Intent.ACTION_SEND_MULTIPLE
: t.Intent.ACTION_SEND);
if (multiple) {
intent.setType("*/*");
intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);
} else {
intent.setType(mimeType);
intent.putExtra(Intent.EXTRA_STREAM, (0));
}
ateChooser(intent, "Share"));
如何在Android系统中发送带附件的电⼦邮件呢? 其实通过Intent可以很⽅便的发送Email,只需要短短10⾏代码就可以处理,这⾥Android开发⽹就以在sdcard上的android123.cwj⽂件为例,通过Intent来发送电⼦邮件。完整代码如下
File file = new File("\sdcard\android123.cwj"); //附件⽂件地址
Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra("subject", Name()); //
intent.putExtra("body", "android123 - email sender"); //正⽂
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file)); //添加附件,附件为file对象
if (Name().endsWith(".gz")) {
intent.setType("application/x-gzip"); //如果是gz使⽤gzip的mime
} else if (Name().endsWith(".txt")) {
intent.setType("text/plain"); //纯⽂本则⽤text/plain的mime
} else {
intent.setType("application/octet-stream"); //其他的均使⽤流当做⼆进制数据来发送
}
startActivity(intent); //调⽤系统的mail客户端进⾏发送
android2.3中,转发带附件的邮件时,新建的邮件中没有相应的附件。查看源码发现,确实没有相关实现,但貌似有实现的源码被注释掉了。求⼤体思路~~~~~
已解决 与⼤家分享⼀下: /*******转发代码********/  if (!loadAttachments(message, 0)) {
mHandler.sendEmptyMessage(MSG_SKIPPED_ATTACHMENTS);  }  private boolean loadAttachments(Message message, int depth){  try{ Attachment[] attachments = storeAttachmentsWithMessageId(this, message.mId); for(final Attachment attachment:attachments){ mHandler.post(new Runnable() {  public void run() {  Uri aUri =
Uri.parse(attachment.mContentUri);  addAttachment(aUri);  }  }); } return true;  }catch(Exception ex){
ex.printStackTrace();  return false;  }  }

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。