How to share photo with CAPTION via Android share intent on Facebook?

后端 未结 2 700
花落未央
花落未央 2020-11-29 05:17

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

I know how to share photo or how to share text, but how do I share th

2条回答
  •  既然无缘
    2020-11-29 06:17

    Add this line to your existing codes:

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

    There is no clearly defined differences among EXTRA_TITLE, EXTRA_SUBJECT and EXTRA_TEXT. So there is no clear share protocol. We could always try them all. :-)

提交回复
热议问题