如何在Android中共享文本和图像

时间:2017-03-20 09:44:29

标签: android android-intent android-webview

我想分享我的应用程序的内容(文本和图像),对于这个问题,我写了下面的代码:

Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("*/*");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, Html.fromHtml(content) + "" +"\n\n" + "download us app from this link" + "\n\n" +"https://play.google.com/app/com.example.example");
startActivity(Intent.createChooser(sharingIntent, "select app ..."));

但是在这段代码中,我只能分享不共享图片的文字!我想分享文字和图片。

对于show text and Image,我使用Webview。我在webview中将图片显示为文字。

如何分享文字和图片?

3 个答案:

答案 0 :(得分:5)

下面的代码可用于与其他应用共享文字和图片。

String imageToShare = "http://s1.dmcdn.net/hxdt6/x720-qef.jpg"; //Image You wants to share

String title = "Title to share"; //Title you wants to share

Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_SUBJECT, title);
shareIntent.setType("*/*");
shareIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
shareIntent.putExtra(Intent.EXTRA_TEXT, imageToShare);
startActivity(Intent.createChooser(shareIntent, "Select App to Share Text and Image"));

答案 1 :(得分:0)

见下面的代码,

 Intent intent = new Intent(Intent.ACTION_SEND);
    intent.setType("image/png");
    intent.putExtra(Intent.EXTRA_TEXT,"http://lorempixel.com/400/200/sports/1/");//your Image Url
    startActivity(Intent.createChooser(intent, "Share Image"));

答案 2 :(得分:0)

将图片的URI添加到图片组(例如http://some.server.com/your_image.png),这样就可以找到相同的图片了。数据被从数据包中拉出时使用。