我正在尝试以编程方式安装apk。
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(Environment.getExternalStorageDirectory() + "/AppFolder/" + "app.apk")), "application/vnd.android.package-archive");
startActivity(intent);
这是我用过的代码。但是当我运行代码时,它会提示选择软件包安装程序,当我选择软件包安装程序时,我收到错误"There was a problem while parsing the package"
。
这是我的MainActivity。
public class MainActivity extends AppCompatActivity {
private Button btnInstall;
private String path;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if(Build.VERSION.SDK_INT>=24){
try{
Method m = StrictMode.class.getMethod("disableDeathOnFileUriExposure");
m.invoke(null);
}catch(Exception e){
e.printStackTrace();
}
}
btnInstall = (Button) findViewById(R.id.btn);
btnInstall.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(Environment.getExternalStorageDirectory() + "Snapseed.apk")), "application/vnd.android.package-archive");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
}
});
}
}
点击按钮`
尝试从SD卡安装Snapseed应用提前致谢。
解决: 谢谢大家。我发现了这个问题。我将文件保存在我的外部存储器中但在代码中,我指的是内部存储器。
答案 0 :(得分:1)
在代码中添加标记。试试这个吧。它对我有用。
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File
(Environment.getExternalStorageDirectory() + "/download/" + "Xender.apk")),
"application/vnd.android.package-archive");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
答案 1 :(得分:0)
在我的情况下,我也遇到了同样的错误。
String path = Environment.getExternalStorageDirectory().getAbsolutePath() +"/app-debug.apk";
intent.setDataAndType(Uri.fromFile(new File(path)), "application/vnd.android.package-archive");
我们要检查现有标签,新.apk
应该是相同的。
希望这会有所帮助。
修改强>
Intent i = new Intent();
i.setAction(Intent.ACTION_VIEW);
i.setDataAndType(Uri.fromFile(new File(path)), "application/vnd.android.package-archive" );
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
Log.d("Lofting", "About to install new .apk");
startActivity(i);
上面的代码对我来说很好,我可以安装或更新我现有的应用程序。
答案 2 :(得分:0)
试试这个,
添加清单文件
的权限 <uses-permission android:name="android.permission.INSTALL_PACKAGES" />
并尝试使用此代码安装apk
Intent newIntent = new Intent();
newIntent.putExtra(PackageUtil.INTENT_ATTR_APPLICATION_INFO,
mPkgInfo.applicationInfo);
newIntent.setData(mPackageURI);
newIntent.setClass(this, InstallAppProgress.class);
String installerPackageName =
getIntent().getStringExtra(Intent.EXTRA_INSTALLER_PACKAGE_NAME);
if (installerPackageName != null) {
newIntent.putExtra(Intent.EXTRA_INSTALLER_PACKAGE_NAME,
installerPackageName);
}
startActivity(newIntent);