我得到了一些代码share image with instagram
。它的完成看到我的代码吼叫
但我想添加标题。
我添加了share text with image
的代码,但它不起作用。我想用函数参数发送位图对象而不是URI,我该如何添加它。
请参阅我的代码。
public void shareInstagram(Uri uri) // instead of uri i want to put bitmap object
{
Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
shareIntent.setType("image/*"); // set mime type
shareIntent.putExtra(Intent.EXTRA_STREAM,uri); // instead of uri i want ot add bitmap image
shareIntent.setPackage("com.instagram.android");
shareIntent.putExtra(Intent.EXTRA_SUBJECT, "Sample subject");
//shareIntent.putExtra(Intent.EXTRA_TEXT, "Sample text");
//shareIntent.putExtra(Intent.EXTRA_TITLE, "Sample title");
startActivity(shareIntent);
}
请帮帮我..朋友
答案 0 :(得分:0)
不建议将位图从一个Intent传递到另一个Intent。最好传递一个URI然后将Picasso放在ImageView中,如http://square.github.io/picasso/
中所述。