Questions tagged [multi-window]

176 questions
0
votes
0 answers

How to hide the titlebar in freeform multiwindow mode?

In an activity I can hide the titlebar using the following code, but when the Activity is started freeform multiwindow mode the title bar appears with x and multiwindow icon. How to hide the titlebar in freeform multiwindow mode ? if…
mzc
  • 31
  • 4
0
votes
0 answers

Creation of UI from worker tread in macos/ios

I tried to built the UI and update it from the worker thread in macos, which threw an 'NSInternalInconsistencyException' stating the reason as 'NSWindow drag regions should only be invalidated on the Main Thread!'. I got to know the reason that we…
kaddy
  • 109
  • 11
0
votes
1 answer

How to reference & change a PyQt5 window object from another window class or from an extra .py file such as init_events_ui.py

Is it possible to add another .py file (via import) and use it as an initialisation and event handler for a PyQt5 Multiwindow project other window & main .py files? I have a project that consists of the following files: main.py - the main app which…
0
votes
0 answers

List all application supported with multi-window

I would like to list all application supported with multi-window. I have a function that list all installed app, but I cannot figure out how to check if an app supports multi-window. Can anyone help me, pls? fun getApplicationsInfo(context:…
Dodo
  • 121
  • 1
  • 9
0
votes
1 answer

Status bar icons color in vertical Multi-window Mode if the app window is in the second position

When in multi-window mode if the app window is in the second position, status bar icons color change their tint from white to black from time to time (if you rotate the phone) on Android 10 Lineage OS. There's no such bug on Samsung Stock running…
Alec Petrosky
  • 37
  • 1
  • 7
0
votes
0 answers

Android App crashing only on specific Tablets - XmlPullParserException

I have an app published on Google Play. For two months, some crashes appear on my Google Play Console. The log is pasted below. Note that this crash so far only appeared for owners of those devices: Samsung Galaxy Tab 4 10.1 and Asus ZenPad 10, all…
BenjyTec
  • 1,719
  • 2
  • 12
  • 22
0
votes
1 answer

Running two electron windows with single JavaScript context

I have a single page application that right now runs in a single Electron browser window. Is it possible to create a second window that will run in the same Javascript context as my main window? For example, I can directly create elements in the…
LeoTietz
  • 329
  • 4
  • 13
0
votes
1 answer

dimens.xml for multi window mod

My app supports multi window feature. I want the app to take dimensions from different dimens.xml files when the app is in normal mode and multi window mode. I have declared the minWidth = 255dp and minHeight = 600dp. I have declared the…
Vinay
  • 1,284
  • 14
  • 24
0
votes
1 answer

How to create a new UIWindowScene from drag'n'drop?

I'm trying to implement the new multi-window in iPadOS, and I struggle with drag'n'drop. In this WWDC video they show us an example where a new scene is created after draging a mail to the side of the screen (at 11:45). How can we do that? In the…
Imotep
  • 2,006
  • 2
  • 25
  • 38
0
votes
1 answer

Android: how run other app in small window

I saw lots of apps that can run ANY installed application in small window. I write my own. Now I can run any app in Multiscreen mode: import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.content.Intent; import…
boris2018
  • 1
  • 1
0
votes
1 answer

How to deny the Multi-Window feature?

I want to deny this option on my app. I already tried to use this guys in manifest->application: android:launchMode="singleTask" android:resizeableActivity="false" But I still can resize my app with my mobile. May be it is mobile's own…
Egor
  • 279
  • 5
  • 21
0
votes
1 answer

Open different applications in part of screen using multi windowing

I am going to use multi windowing feature in my project and I have question. Is it possible to have one application always open to the left of the screen (my application selector "A") which opens different applications on the remaining part of the…
0
votes
0 answers

How to stack two windows on top of each other in tkinter

I am trying to design a GUI that hold a map the user can interact with (move around, zoom in and zoom out from, etc.) and some additional bottoms with different functions attached to them. The way i want it to work is to have a main window that…
0
votes
0 answers

How to call TreeView set_model() from diffrent module?

Im making GUI with PyGTK. Im stuck with updating content in gtk.TreeView(), its reading from json. I want to add a new position in json and update the set_model(new content). I will update the file from three places (add content, delete content,…
Bocian
  • 3
  • 3
0
votes
1 answer

Can't resolve symbol FLAG_ACTIVITY_LAUNCH_TO_ADJACENT

When I add the code below Android Studio shows it's not resolved, knowing that I'm targeting API 28 intent.setFlags(Intent.FLAG_ACTIVITY_LAUNCH_TO_ADJACENT); I tried to use its integer value intent.setFlags(4096); It showed me another error that…
Jack
  • 693
  • 1
  • 7
  • 25