I am working in one Application where i can share my gallery image to facebook,twitter
i have searched the some links..Where everybody mentioned as intent service..but i do not know how it will use in my application,i would really be thankful if somebody help me with complete code
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("image/jpeg");
share.putExtra(Intent.EXTRA_STREAM,
Uri.parse("file:///sdcard/DCIM/Camera/myPic.jpg"));
startActivity(Intent.createChooser(share, "Share Image"));