Android: How to share image with text on facebook via intent?

后端 未结 7 2473
眼角桃花
眼角桃花 2020-11-27 03:18

I\'d like to share a photo with caption pre-filled from my app via a share intent, on facebook.

Example code

Intent intent = new Intent();
intent.set         


        
7条回答
  •  抹茶落季
    2020-11-27 04:00

    Add these lines to your following code

    shareCaptionIntent.putExtra(Intent.EXTRA_TITLE, "my awesome caption in the EXTRA_TITLE field");
    

提交回复
热议问题