apk 安装与 卸载

/*

//安装

Intent intent = new Intent(Intent.ACTION_VIEW);   

        intent.setDataAndType(Uri.fromFile(new File("/sdcard/test.apk")),
                "application/vnd.android.package-archive");   
        
        startActivity(intent);  */
        
        //卸载
        Uri packageURI = Uri.parse("package:com.um.test");      
        Intent uninstallIntent = new Intent(Intent.ACTION_DELETE, packageURI);      
        startActivity(uninstallIntent); 

你可能感兴趣的:(apk 安装与 卸载)