Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PIP issues #85

Open
iostyle opened this issue Sep 21, 2022 · 9 comments
Open

PIP issues #85

iostyle opened this issue Sep 21, 2022 · 9 comments

Comments

@iostyle
Copy link

iostyle commented Sep 21, 2022

Start a singleTask activity will show in PIP, when PIP used.

QQ20220921-191158-HD.mp4
@iostyle
Copy link
Author

iostyle commented Sep 21, 2022

When PIP activity and other singleTask activity in the same task.

@BambooXiu
Copy link

yes, I have met this error too, that is very disappointed ! So, DO NOT USE PIP !!!

@pinehallnick
Copy link

Did pip solve this problem? I encountered the same problem

@BambooXiu
Copy link

Unfortunately not yet

@mohsenoid
Copy link

I had the same issue and this answer looks promising,
https://stackoverflow.com/a/54086060/2359762
Have you tried taskAffinity instead of singleTask?

@opLW
Copy link

opLW commented Sep 11, 2023

When starting PIP Activity normally, PIP activity will launch on a new Task which taskAffinity is same as application packagename.
So we have two Task with same taskAffinity.
Then if you start an activity with singleTask mode, it will launch on Task just create for PIP activity.

I solved this problem by setting a special taskAffinity for PIP activity.
Setting Special taskAffinity can launch PIP activity on a independent Task.
Then activity with singleTask mode will not be launched on Task that PIP Activity was in.

@pinehallnick
Copy link

When starting PIP Activity normally, PIP activity will launch on a new Task which taskAffinity is same as application packagename. So we have two Task with same taskAffinity. Then if you start an activity with singleTask mode, it will launch on Task just create for PIP activity.

I solved this problem by setting a special taskAffinity for PIP activity. Setting Special taskAffinity can launch PIP activity on a independent Task. Then activity with singleTask mode will not be launched on Task that PIP Activity was in.

However, this will produce multiple windows on the task list, which cannot be satisfied for applications such as video conferencing

@focuseyes360
Copy link

In order to solve this problem, i add task affinity to the support pip activity in the manifest.xml. This causes another problem,
when press home key ,the activity is background ,and user click icon from the home desk, the app start and go to the main task(the app default package name task), not the support pip activity. I foreach the app tasks, find the task containing the support pip activity, and call " task.moveToFront();" to bringfront the activity , the activity go in pip mode normally. I go to the activity normal mod and finish the activity. After that , I click the button,and go to the support pip activity again, this time ,the system log shows the activity go to pip mode ,but the min window not shown. million seconds later, the system log shows the app is in background.
The above can be reproduced in android14 system.
Finally, i change the called code from "task.moveToFront();" to " activityManager.moveTaskToFront()", the bad result above is gone. I don't know why, just guess that , "task.moveToFront();"maybe cause PIP mode out of time sequence.

@OnClickListener2048
Copy link

up

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants