android安装apk程序

   publicvoid installAPK()

   {

        Intent i = new Intent(Intent.ACTION_VIEW);

        String path = "/sdcard/xxx.apk";

        i.setDataAndType(Uri.parse("file:"+path), "application/vnd.android.package-archive");

        startActivity(i);

   }

   

你可能感兴趣的:(android安装apk程序)