Android-O 在辅助显示器上启动

Android-O launch on secondary display

Android-O 中的新 ActivityOptions setLaunchDisplayId (int launchDisplayId) 函数似乎总是在我尝试启动 activity 意图时使我的应用程序崩溃。

当我从我自己的应用程序启动活动时,以及当我尝试启动其他应用程序时,即 Chrome Canary。

有谁知道这是新 API 的普遍问题还是我遗漏了什么:

下面是我的一小段代码:

options.setLaunchDisplayId(1); startActivity(intent, options);

注意 我正在测试启用 'simulate a second screen'(@1080p 如果重要的话)。

更新 我试过ADB命令adb shell start com.chrome.canary --display 1, 我收到消息:

start: must be root

我已经使用下面的代码通过新 API 连接到第二个屏幕,但目前还无法与之交互。

 Bundle bdl;
 MediaRouter mediaRouter = (MediaRouter) mContext.getSystemService(Context.MEDIA_ROUTER_SERVICE);
 MediaRouter.RouteInfo route = mediaRouter.getSelectedRoute(MediaRouter.ROUTE_TYPE_LIVE_VIDEO);
 if (route != null) {
     Display presentationDisplay = route.getPresentationDisplay();
     bdl = ActivityOptions.makeClipRevealAnimation(mView, left, top, width, height).setLaunchBounds(rect).setLaunchDisplayId(presentationDisplay.getDisplayId()).toBundle();
     Bundle optsBundle = true ? bdl : null;
     Intent intent = new Intent(mContext, SecondaryActivity.class);
     intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
     mContext.startActivity(intent, optsBundle);
 }

这是一个对我有用的简化答案,建立在@Smiler 的基础上。我通过 Button 单击我的 MainActivity 测试了这个。感谢您的帮助!

    ((Button) findViewById(R.id.launchTopScreen)).setOnClickListener(v -> {
        Intent intent = getPackageManager().getLaunchIntentForPackage("com.example.new.app");
        intent.addFlags(Intent.FLAG_ACTIVITY_LAUNCH_ADJACENT | Intent.FLAG_ACTIVITY_NEW_TASK);
        ActivityOptions options = ActivityOptions.makeBasic().setLaunchDisplayId(1);
        startActivity(intent, options.toBundle());
    });

为了在不同的显示器上启动新应用程序,Intent.FLAG_ACTIVITY_NEW_TASK 非常重要。否则它将在同一显示器上的同一任务堆栈中启动。

'new application' 还需要在清单中包含 android:resizeableActivity="true"True 是默认值,但我指定只是明确说明并保护未来的框架更改。

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:resizeableActivity="true"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">

每次添加新的模拟屏幕时,显示 ID 都会更改。重新启动时它会重置为 1。检查这是否是问题所在。您指定的 adb 命令似乎没有像您所说的那样工作。