从另一个Android应用程序打开Instagram应用程序并发送带有标题的图像

从另一个Android应用程序打开Instagram应用程序并发送带有标题的图像,第1张

概述我基本上寻找的是从另一个应用程序打开Instagram应用程序并发送带有标题的图像. 在iOS中有一些有用的文档可以做到这一点. ( iPhone-hooks) 如iPhone-hooks所述,Instagram是否支持在iOS中执行自定义 *** 作? 下面是我的应用程序中用于部分执行此任务的当前代码. private void sendImageToIntagram(Activity activity 我基本上寻找的是从另一个应用程序打开Instagram应用程序并发送带有标题的图像.
在iOS中有一些有用的文档可以做到这一点. ( iPhone-hooks)

如iPhone-hooks所述,Instagram是否支持在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("*/*");

也是如此,但上述都没有奏效.

解决方法 看看 this question,尤其是Chriskot的 this answer,它看起来自2014年7月以来Instagram让你这样做.

长话短说

Intent instagram = new Intent(androID.content.Intent.ACTION_SEND);  instagram.setType("image/*");instagram.putExtra(Intent.EXTRA_STREAM,[URI of photo]);instagram.putExtra(Intent.EXTRA_TEXT,[Text of caption]);instagram.setPackage(instagramPackagename);   startActivity(instagram);
总结

以上是内存溢出为你收集整理的从另一个Android应用程序打开Instagram应用程序并发送带有标题的图像全部内容,希望文章能够帮你解决从另一个Android应用程序打开Instagram应用程序并发送带有标题的图像所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1129958.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存