Facebook and Youtube not show on Android Activity Chooser -



Facebook and Youtube not show on Android Activity Chooser -

my android app contains links, want share link on facebook. used intent.action_send why

facebook icon not shown on activity chooser, code:

intent sharing = new intent(intent.action_send); sharing.settype("text/html"); sharing.putextra(intent.extra_subject, "check out video"); sharing.putextra(intent.extra_text, "https://www.youtube.com/watch?v=" + videourl); startactivity(intent.createchooser(sharing, "what share?"));

change

sharing.settype("text/html");

to

sharing.settype("text/plain");

this modification solved issue here. hope help you!

also, check code utilize share link using specific apps: http://pastebin.com/jhyzdl4s.

android facebook android-intent android-activity

Comments

Popular posts from this blog

assembly - What is the addressing mode for ld, add, and rjmp instructions? -

vowpalwabbit - Interpreting Vowpal Wabbit results: Why are some lines appended by "h"? -

Is there a way to convert an HTML page styled with Bootstrap CSS into email-compatible html? -