Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
File file = new File(Environment.getExternalStorageDirectory()
		.getAbsolutePath()+"/123/","wbank_kxd_sdk.apk");
intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive");
startActivity(intent);

  留作备用

相关文章:

  • 2021-11-08
  • 2022-12-23
  • 2021-11-29
  • 2021-11-01
  • 2021-09-19
  • 2022-12-23
  • 2022-12-23
  • 2021-06-29
猜你喜欢
  • 2022-12-23
  • 2022-03-08
  • 2021-07-27
  • 2021-04-15
  • 2022-01-18
  • 2022-12-23
相关资源
相似解决方案