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:")); 

this how looks when sharing twitter


Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -