Android以编程方式安装apk

前端之家收集整理的这篇文章主要介绍了Android以编程方式安装apk前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以在后台以编程方式安装apk,或者用户是否必须接受安装.

我的方案是我希望我的员工都安装了相同的应用程序集.

当然,他们可以自己安装应用程序,但我希望他们都至少安装了一些应用程序.

我不是在谈论从市场上安装应用程序.

解决方法

solution in this link
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(Environment.getExternalStorageDirectory() + "/download/" + "app.apk")),"application/vnd.android.package-archive");
startActivity(intent);
原文链接:https://www.f2er.com/android/317308.html

猜你在找的Android相关文章