Android共享文字和图片

时间:2013-01-14 20:43:33

标签: android

我需要通过Facebook,电子邮件等分享文字+图片。现在,我使用这段代码:

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("image/*");
intent.putExtra(Intent.EXTRA_TEXT, getString(R.string.settings_share_text));
//Uri path = Uri.parse("android.resource://com.android.mypackage/" + R.drawable.arrow);
Uri path = Uri.parse("android.resource://com.android.mypackage/drawable/arrow.png");
intent.putExtra(Intent.EXTRA_STREAM, path );
Intent mailer = Intent.createChooser(intent, null);
startActivity(mailer);

问题是,当我使用“arrow.png”时,它会显示“无法显示附件”并且不附加图像;当我删除.png时,我以后无法打开附件。 基本上,我需要从drawable和一些文本中附加png并通过ACTION_SEND

分享

1 个答案:

答案 0 :(得分:3)

尝试使用

Uri.fromFile(new File("android.resource://com.android.mypackage/drawable/arrow.png"));

而不是

Uri.parse("android.resource://com.android.mypackage/drawable/arrow.png");

如果文件描述符有效,它将正常工作。