android - Sharing Pictures and Text with Facebook SDK 4.2 -
i'm trying share pictures , text facebook sdk 4.2, when call share function (via sdk or intent) image without text. here's code
intent shareintent = new intent(android.content.intent.action_send); shareintent.settype("image/*"); shareintent.putextra(intent.extra_stream, uri.parse("file://" + mfilepath)); shareintent.putextra(intent.extra_text,"example"); shareintent.setpackage("com.facebook.katana"); startactivity(shareintent);
facebook not allow pre-filling messages. see this discussion details.
Comments
Post a Comment