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
Post a Comment