Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了android – 如何将我的应用程序中的图像分享到whatsapp?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
在这里,我将我的应用程序中的图像分享whatsapp.but此代码仅适用于mylist1 [i],而不适用于mylist2 [i]和Mylist3 [i].在我的活动文件中,每个列表中有15个图像.该怎么办

Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.setType("image/*");
Uri uri = Uri.parse("android.resource://com.example.drawcelebrities/"+mylist1[i]+mylist2[i]+mylist3[i]);
intent.putExtra(Intent.EXTRA_STREAM,uri);
startActivity(Intent.createChooser(intent,"Share via"));

解决方法

在mylist []中获取图像数组并使用下面的代码,然后通过whatsapp共享图像.

Uri uri = Uri.parse("android.resource://"+getPackagename()+"/"+mylist[i]);

Intent shareIntent = new Intent();
             shareIntent.setAction(Intent.ACTION_SEND);
             shareIntent.setType("image/*");
             shareIntent.putExtra(Intent.EXTRA_STREAM,uri);
             startActivity(Intent.createChooser(shareIntent,"Share via"));

大佬总结

以上是大佬教程为你收集整理的android – 如何将我的应用程序中的图像分享到whatsapp?全部内容,希望文章能够帮你解决android – 如何将我的应用程序中的图像分享到whatsapp?所遇到的程序开发问题。

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

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。