修复次级窗口打开时传递的参数缺失问题
This commit is contained in:
parent
bc3a320433
commit
6278c3f945
@ -1,8 +1,8 @@
|
|||||||
#Created by .winboll/winboll_app_build.gradle
|
#Created by .winboll/winboll_app_build.gradle
|
||||||
#Tue May 13 11:05:12 HKT 2025
|
#Mon May 19 21:38:06 GMT 2025
|
||||||
stageCount=1
|
stageCount=1
|
||||||
libraryProject=libappbase
|
libraryProject=libappbase
|
||||||
baseVersion=15.8
|
baseVersion=15.8
|
||||||
publishVersion=15.8.0
|
publishVersion=15.8.0
|
||||||
buildCount=0
|
buildCount=3
|
||||||
baseBetaVersion=15.8.1
|
baseBetaVersion=15.8.1
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#Created by .winboll/winboll_app_build.gradle
|
#Created by .winboll/winboll_app_build.gradle
|
||||||
#Tue May 13 11:05:02 HKT 2025
|
#Mon May 19 21:38:06 GMT 2025
|
||||||
stageCount=1
|
stageCount=1
|
||||||
libraryProject=libappbase
|
libraryProject=libappbase
|
||||||
baseVersion=15.8
|
baseVersion=15.8
|
||||||
publishVersion=15.8.0
|
publishVersion=15.8.0
|
||||||
buildCount=0
|
buildCount=3
|
||||||
baseBetaVersion=15.8.1
|
baseBetaVersion=15.8.1
|
||||||
|
@ -81,6 +81,7 @@ public class WinBoLLActivityManager {
|
|||||||
// 新建一个任务窗口
|
// 新建一个任务窗口
|
||||||
Intent intent = new Intent(context, clazz);
|
Intent intent = new Intent(context, clazz);
|
||||||
//打开多任务窗口 flags
|
//打开多任务窗口 flags
|
||||||
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||||
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_DOCUMENT);
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_DOCUMENT);
|
||||||
intent.addFlags(Intent.FLAG_ACTIVITY_MULTIPLE_TASK);
|
intent.addFlags(Intent.FLAG_ACTIVITY_MULTIPLE_TASK);
|
||||||
intent.putExtra("tag", tag);
|
intent.putExtra("tag", tag);
|
||||||
@ -102,6 +103,7 @@ public class WinBoLLActivityManager {
|
|||||||
// 新建一个任务窗口
|
// 新建一个任务窗口
|
||||||
//Intent intent = new Intent(context, clazz);
|
//Intent intent = new Intent(context, clazz);
|
||||||
//打开多任务窗口 flags
|
//打开多任务窗口 flags
|
||||||
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||||
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_DOCUMENT);
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_DOCUMENT);
|
||||||
intent.addFlags(Intent.FLAG_ACTIVITY_MULTIPLE_TASK);
|
intent.addFlags(Intent.FLAG_ACTIVITY_MULTIPLE_TASK);
|
||||||
intent.putExtra("tag", tag);
|
intent.putExtra("tag", tag);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user