C CaptKronos Active Member Licensed User Longtime User Dec 5, 2019 #1 I am trying to remove the Multi-Window option "Open in pop-up view" without success. I have tried adding to the manifest B4X: SetActivityAttribute(Main,android:supportsPictureInPicture, "false") but that doesn't seem to do anything. I would appreciate some help. Thanks.
I am trying to remove the Multi-Window option "Open in pop-up view" without success. I have tried adding to the manifest B4X: SetActivityAttribute(Main,android:supportsPictureInPicture, "false") but that doesn't seem to do anything. I would appreciate some help. Thanks.
Erel B4X founder Staff member Licensed User Longtime User Dec 6, 2019 #2 Try this: B4X: SetActivityAttribute(Main,android:resizeableActivity, "false") Upvote 0
C CaptKronos Active Member Licensed User Longtime User Dec 6, 2019 #3 That turns off all multi-window functionality, which I might end up going with if it is not possible to just disable the pop-up view. Ideally, I would like to have the option "Open in split screen view" but not "Open in pop-up view". Upvote 0
That turns off all multi-window functionality, which I might end up going with if it is not possible to just disable the pop-up view. Ideally, I would like to have the option "Open in split screen view" but not "Open in pop-up view".
Erel B4X founder Staff member Licensed User Longtime User Dec 8, 2019 #4 These are the two relevant attributes. I don't think that there is any other way to configure it. Upvote 0
C CaptKronos Active Member Licensed User Longtime User Dec 8, 2019 #5 Ok, thanks. I think I have my app working well enough with the pop-up view so I'm happy. Upvote 0