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

Popular posts from this blog

How has firefox/gecko HTML+CSS rendering changed in version 38? -

android - CollapsingToolbarLayout: position the ExpandedText programmatically -

Listeners to visualise results of load test in JMeter -