我试图把一个apk发送到其他但我不能这样做.
我正在使用此代码:
Intent sharei=new Intent(Intent.ACTION_SEND);sharei.putExtra(Intent.EXTRA_STREAM,Uri.parse("androID.resource://com.packa.ge/raw/hafez.apk"));sharei.setType("application/vnd.androID.package-archive");startActivity(Intent.createChooser(sharei,"share"));
但它不起作用.
我看到一个波斯应用程序执行此 *** 作:在上下文菜单中,其中一项是:“通过蓝牙发送”,当我触摸它时,它将apk文件发送到另一部手机.
我打包我的应用程序并将其放到Raw文件夹发送,但这对第二或第三部手机无法正常工作.
he saID: “i create a application for androID i need put button to send my application to other phone”,i think he is talking about sending the same application he is running….
Andrea Bellitto
是.我需要发送正在运行的应用程序.
解决方法 解决 …try { PackageManager pm = getPackageManager(); ApplicationInfo ai = pm.getApplicationInfo(getPackagename(),0); file srcfile = new file(ai.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)); startActivity(Intent.createChooser(share,"PersianCoders"));} catch (Exception e) { Log.e("ShareApp",e.getMessage());}总结
以上是内存溢出为你收集整理的打包我的应用程序并分享到其他Android全部内容,希望文章能够帮你解决打包我的应用程序并分享到其他Android所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)