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?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)