- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在执行这些步骤但对于 sdk 版本 N,android 系统在安装应用程序时显示警告对话框“Package installer has stopped”。
:1 - 将以下内容添加到 AndroidManifest.xml:
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/paths"/>
</provider>
2 - 将以下 paths.xml 文件添加到 src, main 中 res 上的 xml 文件夹(如果不存在则创建它)
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path
name="external_file"
path="."/>
</paths>
pathName 是上面示例内容 uri 示例中显示的,pathValue 是系统上的实际路径。放一个“.”是个好主意。如果您不想添加任何额外的子目录,则为上面的 pathValue。
3 - 编写以下代码来运行您的 Apk 文件:
File file = "path of yor apk file";
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
Uri fileUri = FileProvider.getUriForFile(getBaseContext(),
getApplicationContext().getPackageName() + ".provider", file);
Intent intent = new Intent(Intent.ACTION_VIEW, fileUri);
intent.putExtra(Intent.EXTRA_NOT_UNKNOWN_SOURCE, true) ;
intent.setDataAndType(fileUri, "application/vnd.android" + ".package-
archive");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK |
Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(intent);
} else {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file),"application/vnd.android.package-
archive");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
}
最佳答案
首先,将目标 SDK 版本设置为 26 (Android Oreo) 以使一切正常运行。
然后按照以下步骤操作:
- How to check if the installation is allowed?
您可以在您的 Activity 中使用 getPackageManager().canRequestPackageInstalls()
到处检查。请注意,如果您未声明该权限或选择了错误的 SDK 版本,此 bool 值始终返回 false
。
- What permission i need to request?
您需要在您的应用程序 list 中声明 Mainfest.permission.REQUEST_PACKAGE_INSTALLS
,如下所示:
<uses-permission android:name="android.permission.REQUEST_PACKAGE_INSTALLS" />
- How can i prompt user to grant permission?
在这里你可以做这样的事情:
startActivity(new Intent(android.provider.Settings.ACTION_MANAGE_UNKNOWN_APP_SOURCES, Uri.parse("package:".concat("your.package.name"))));
- How to prompt user to install apk?
完成所有其他步骤后,您可以提示用户使用此代码安装包:
Intent installIntent = new Intent(Intent.ACTION_INSTALL_PACKAGE);
installIntent.putExtra(Intent.EXTRA_RETURN_RESULT, true); //this is necessary if you want to know if the installation was success, failed or cancelled.
installIntent.setData(Uri.fromFile(new File("/sdcard/yourapk.apk"))); //replace yourapk to your apk name
startActivityForResult(installIntent, 1);
如果您想知道安装是成功、失败还是取消,您可能还需要添加 installIntent.putExtra(Intent.EXTRA_RETURN_RESULT, true);
。
关于android - 如何在 android N 上以编程方式安装应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46802947/
我是一名优秀的程序员,十分优秀!