Dude, you can try the following:
Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("text/plain"); intent.putExtra(Intent.EXTRA_TEXT, the_pure_link); startActivity(Intent.createChooser(intent, "Share with"));
If there are images inside the_pure_link, or the_pure_link contains:
<link rel="image_src" type="image/jpeg" href="image_address" />
Share on facebook will show the link, image and your comment together. All of these solutions are on stackoverflow.com. Check it out here:
Share text on Facebook from the Android app via ACTION_SEND
Share images from android to facebook
James
source share