自动安装apk

ran*_*vee 15 android

我想知道是否有可能以编程方式触发卡上安装的apk?

Com*_*are 20

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(fileName)), "application/vnd.android.package-archive");
startActivity(intent);
Run Code Online (Sandbox Code Playgroud)

(由anddev.org提供)