如果 Multi-Window Lifecycle 在 android N 中影响 activity 生命周期?
If Multi-Window Lifecycle affect activity lifecycle in android N?
我正在开发一个必须提供多 Window 支持的应用程序。所以我用 N Preview SDK
构建我的应用程序。但从概念上讲,我不清楚 Multi-Window Lifecycle
是否会影响 Android N 中的 Activity Lifecycle
?
In multi-window mode, only the activity the user has most recently interacted with is active at a given time. This activity is considered topmost. All other activities are in the paused state, even if they are visible. However, the system gives these paused-but-visible activities higher priority than activities that are not visible. If the user interacts with one of the paused activities, that activity is resumed, and the previously topmost activity is paused.
我正在开发一个必须提供多 Window 支持的应用程序。所以我用 N Preview SDK
构建我的应用程序。但从概念上讲,我不清楚 Multi-Window Lifecycle
是否会影响 Android N 中的 Activity Lifecycle
?
In multi-window mode, only the activity the user has most recently interacted with is active at a given time. This activity is considered topmost. All other activities are in the paused state, even if they are visible. However, the system gives these paused-but-visible activities higher priority than activities that are not visible. If the user interacts with one of the paused activities, that activity is resumed, and the previously topmost activity is paused.