我想在意图内添加.apk文件.我想创建一个“共享”按钮,该按钮将通过蓝牙或具有发送应用程序功能的任何其他应用程序共享整个应用程序.如果可以通过其他方式完成,请告诉我!
谢谢
解决方法:
List(ApplicationInfo) mAppList=getPackageManager().getInstalledApplications(0); ApplicationInfo item = mAppList.get(position); public static voID ShareAPK(ApplicationInfo item,Context ctx) { try { file srcfile = new file(item.publicSourceDir); Intent share = new Intent(); share.setAction(Intent.ACTION_SEND); share.setType("application/vnd.androID.package-archive"); share.putExtra(Intent.EXTRA_STREAM, Uri.fromfile(srcfile)); ctx.startActivity(Intent.createChooser(share, "Sharing")); } catch (Exception e) { e.printtrace(); }}
总结 以上是内存溢出为你收集整理的android-如何在意图内添加.apk文件全部内容,希望文章能够帮你解决android-如何在意图内添加.apk文件所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)