Instagram from Android open on certain user and add caption to uploaded image
问题 Instagram for Android is very limited, from what I have seen so far. My scenario is simple: allow the user to edit a picture and when he clicks on Send: Intent share = new Intent(Intent.ACTION_SEND); share.setType("image/jpeg"); Then with queryIntentActivities() I search to see if Instagram is installed. If it is I send the path of my image to be uploaded: share.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///" + path to myfile.png")); share.setClassName(resolveInfo.activityInfo.packageName,