当前位置: 代码迷 >> Android >> android apk的装配
  详细解决方案

android apk的装配

热度:90   发布时间:2016-05-01 15:49:17.0
android apk的安装

?

android apk的安装

String str = "sample1.apk";
String fileName = Environment.getExternalStorageDirectory() + str;
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(fileName)), "application/vnd.android.package-archive");
startActivity(intent);
  相关解决方案