如何在android N(SDK 24)的分屏中打开另一个应用程序?
在文档中我发现了这个:
以多窗口模式启动新活动
当您启动新活动时,如果可能,您可以向系统提示新活动应与当前活动相邻显示。为此,请使用标志Intent.FLAG_ACTIVITY_LAUNCH_TO_ADJACENT。传递此标志会请求以下行为:
如果设备处于分屏模式,系统会尝试在启动它的活动旁边创建新活动,因此这两个活动共享屏幕。系统无法保证能够执行此操作,但如果可能,它会使活动相邻。 如果设备未处于分屏模式,则此标志无效。 如果设备处于自由格式模式并且您要启动新活动,则可以通过调用ActivityOptions.setLaunchBounds()来指定新活动的维度和屏幕位置。如果设备未处于多窗口模式,则此方法无效。
所以当我尝试这个时,Intent.FLAG_ACTIVITY_LAUNCH_TO_ADJACENT
标志不存在。我安装了
这是我的傻瓜:
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.0"
defaultConfig {
applicationId "PACKAGENAME"
minSdkVersion 16
targetSdkVersion 24
versionCode 2
versionName "2.4.1"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.0.0'
compile 'com.android.support:design:24.0.0'
compile 'org.jsoup:jsoup:1.8.3'
compile 'com.android.support:support-v4:24.0.0'
compile 'com.google.code.gson:gson:2.6.2'
compile 'com.squareup.okhttp3:okhttp:3.2.0'
}
答案 0 :(得分:2)
嗨,从 android 7.0 开始,您可以进入自由多窗口模式。在您的设备中打开开发人员选项并使用以下 adb 命令:
adb shell settings put global enable_freeform_support 1
adb shell settings put global force_resizable_activities 1
您可以使用以下功能以编程方式在分屏中启动不同的活动后:
private void goToSplitMode() {
Intent i = new Intent(this, SplitMainActivity.class);
PackageManager manager = getPackageManager();
i = manager.getLaunchIntentForPackage("com.google.android.apps.maps");
i.addFlags(Intent.FLAG_ACTIVITY_LAUNCH_ADJACENT |
Intent.FLAG_ACTIVITY_NEW_TASK |
Intent.FLAG_ACTIVITY_MULTIPLE_TASK);
DisplayMetrics displayMetrics = new DisplayMetrics();
Rect mBounds = new Rect(300, 0, getScreenWidth(this), getScreenHeight(this));
mOptions = getActivityOptions(MainActivity.this);
mOptions = mOptions.setLaunchBounds(mBounds);
startActivity(i, mOptions.toBundle());
i = new Intent(this, SplitMainActivity.class);
mBounds = new Rect(0, 0, 300, getScreenHeight(this));
mOptions = getActivityOptions(MainActivity.this);
mOptions = mOptions.setLaunchBounds(mBounds);
i.addFlags(Intent.FLAG_ACTIVITY_LAUNCH_ADJACENT |
Intent.FLAG_ACTIVITY_NEW_TASK |
Intent.FLAG_ACTIVITY_MULTIPLE_TASK);
startActivity(i, mOptions.toBundle());
}
public static ActivityOptions getActivityOptions(Context context) {
ActivityOptions options = ActivityOptions.makeBasic();
int freeform_stackId = 5;
try {
Method method = ActivityOptions.class.getMethod("setLaunchWindowingMode", int.class);
method.invoke(options, freeform_stackId);
} catch (Exception e) { /* Gracefully fail */
}
return options;
}
public static int getScreenWidth(@NonNull Activity activity) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
WindowMetrics windowMetrics = activity.getWindowManager().getCurrentWindowMetrics();
Insets insets = windowMetrics.getWindowInsets()
.getInsetsIgnoringVisibility(WindowInsets.Type.systemBars());
return windowMetrics.getBounds().width() - insets.left - insets.right;
} else {
DisplayMetrics displayMetrics = new DisplayMetrics();
activity.getWindowManager().getDefaultDisplay().getMetrics(displayMetrics);
return displayMetrics.widthPixels;
}
}
public static int getScreenHeight(@NonNull Activity activity) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
WindowMetrics windowMetrics = activity.getWindowManager().getCurrentWindowMetrics();
Insets insets = windowMetrics.getWindowInsets()
.getInsetsIgnoringVisibility(WindowInsets.Type.systemBars());
return windowMetrics.getBounds().height() - insets.top - insets.bottom;
} else {
DisplayMetrics displayMetrics = new DisplayMetrics();
activity.getWindowManager().getDefaultDisplay().getMetrics(displayMetrics);
return displayMetrics.heightPixels;
}
}
答案 1 :(得分:0)
首先应该将应用程序定位到SDK 24+版本。如果它的目标是低于24 SDK,那么分屏模式将无效。 然后仔细阅读here和here
如果设备处于分屏模式,系统将尝试创建 启动它的活动旁边的新活动,所以这两个 活动共享屏幕。系统无法保证能够使用 要做到这一点,但如果可能,它会使活动相邻。
此标志仅用于分屏多窗口模式。新的 活动将显示在启动活动的旁边。这个可以 仅与FLAG_ACTIVITY_NEW_TASK一起使用。另外,设置 如果您想要新的实例,则需要FLAG_ACTIVITY_MULTIPLE_TASK 要创建的现有活动。
这意味着您无法以编程方式启动分屏模式。如果您已处于分屏模式,则可以尝试在屏幕的其他部分启动活动。