如何使用android在Instagram上发布时使用图像添加标题(像Bitmap一样的对象)

时间:2013-06-20 09:00:34

标签: android android-intent

我得到了一些代码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);
   }

请帮帮我..朋友

1 个答案:

答案 0 :(得分:0)

不建议将位图从一个Intent传递到另一个Intent。最好传递一个URI然后将Picasso放在ImageView中,如http://square.github.io/picasso/

中所述。