请写出安装apk的程序代码

Intent i  = new Intent(Intent.ACTION_VIEW);
		//apk
		String str = "/sdcard/FileTest.apk";
		i.setDataAndType(Uri.parse("file://" + str), "application/vnd.android.package-archive");
		startActivity(i);

你可能感兴趣的:(apk,android)