3

我想在我的应用 SurfaceView 中镜像例如 Waze:

    Intent intent = getPackageManager().getLaunchIntentForPackage("com.waze"); //"com.waze"

    Bundle opts = ActivityOptions
            .makeBasic()
            .setLaunchDisplayId(virtualDisplay.getDisplay().getDisplayId())
            .toBundle();

    startActivity(intent, opts);

我收到权限被拒绝错误:

java.lang.SecurityException: Permission Denial: starting Intent

我有解决方法吗?这有没有可能?

4

0 回答 0