I want to share the image of flickr, tumblr, instagram. I want to do this with these 3 installed applications. I found for instagram
Intent shareIntent = new Intent(Intent.ACTION_SEND); shareIntent.setType("image/*"); shareIntent.putExtra(Intent.EXTRA_TEXT, "" + getShareText()); shareIntent.putExtra(Intent.EXTRA_SUBJECT, "" + getShareText()); shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://" + file.getAbsolutePath())); shareIntent.setPackage("com.instagram.android");
Can i have tumblr and flickr? Yes, I can do with the oauth process by integrating libraries. But I want to share through a specific installed application.
Help!! Thanks.
source share