我基本上寻找的是从另一个应用程序打开 Instagram 应用程序并发送带有标题的图像。在 iOS 中有一些有用的文档可以做到这一点。(iPhone挂钩)
Instagram 是否支持在 Android 中执行自定义操作,如iPhone-hooks中所述的 iOS ?
以下是我的应用程序中用于部分执行此任务的当前代码。
private void sendImageToIntagram(Activity activity) {
Intent intent = activity.getPackageManager().getLaunchIntentForPackage("com.instagram.android");
if (intent != null) {
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.setPackage("com.instagram.android");
String imagePath = ImageUtil.getProcessedImage().getAbsolutePath();
try {
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(MediaStore.Images.Media.insertImage(activity.getContentResolver(), imagePath, "Title", "Description")));
// shareIntent.putExtra(Intent.EXTRA_TITLE, "Caption 01");
// shareIntent.putExtra(Intent.EXTRA_TEXT, "Caption 02");
// shareIntent.putExtra(Intent.EXTRA_SUBJECT,"Caption 03");
} catch (FileNotFoundException e) {
e.printStackTrace();
}
shareIntent.setType("image/jpeg");
activity.startActivity(shareIntent);
} else {
// bring user to the market to download the app.
intent = new Intent(Intent.ACTION_VIEW);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setData(Uri.parse("market://details?id=" + "com.instagram.android"));
activity.startActivity(intent);
}
}
以上标题、描述、标题 01、标题 02、标题 03 均无效。
然后我尝试了,
shareIntent.setAction(Intent.ACTION_SEND);
-->shareIntent.setAction(Intent.ACTION_SEND_MULTIPLE);
和,
shareIntent.setType("image/jpeg");
shareIntent.setType("image/*");
shareIntent.setType("*/*");
也是,但以上都没有工作。