Android - Can not share image in Facebook using ACTION_SEND -
i understand various post not possible share both image , text data in facebook through intent share. twitter able share both thumbnail , text in facebook through intent share shown in image. can u comment on , suggest way share both image , text in facebook through intent.
thanks in advance.
intent intent = new intent(intent.action_send); intent.settype("image/*"); intent.putextra(intent.extra_text, viewproject.getsharelink()); intent.putextra(intent.extra_stream, uri); startactivity(intent.createchooser(intent, "compatible apps:"));
Comments
Post a Comment