我试图通过隐含的意图分享图像。该图像已通过 Messenger 和 Twitter 成功共享,但在 Facebook 新闻提要、Viber 和电子邮件上失败。我在某处读到需要先将图像保存到外部或内部 SD 卡,然后再共享。我对 1)如何将图像保存到 SD 卡和 2)如何指向 SD 卡上的新图像位置以共享它有点迷茫。目前我共享图像的代码如下所示:
Button share = findViewById(R.id.sharetoapps);
share.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Uri uri = Uri.parse("android.resource://com.testing.mypic/drawable/bad_day");
intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_STREAM,uri);
intent.setType("image/png");
startActivity(Intent.createChooser(intent, "share to:"));
}
});
我的xml是:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<Button
android:id="@+id/sharetoapps"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="share" />
</LinearLayout>
如果您有任何指示或知道任何相关教程,我将不胜感激。