Questions tagged [multi-window]
176 questions
4
votes
0 answers
How to disable resizing of a multi-window activity
I have just added multi-window support to my application. I have two Activities A and B, where A starts B. And I would like to disable resizing(or disable multiwindow) of activity B. Setting android:resizeableActivity=false doesn't work. It only…

noev
- 980
- 8
- 26
4
votes
1 answer
Cocoa multi window drag and drop example
I am looking for a cocoa example that illustrates how to drag an image from one window to another. If not I would like to see an example that shows dragging an image from a source and destination in the same window. If anyone has a link to any…

Mike2012
- 7,629
- 15
- 84
- 135
4
votes
1 answer
Samsung's multi window support - Screen size
I'm currently developping my app to be compatible with the samsung multi window feature introduced with the galaxy note 2 and soon the galaxy s3. If you don't know what I'm talking about :
(source: androidheadlines.com)
If you are interested, here…

Stephane Mathis
- 6,542
- 6
- 43
- 69
3
votes
0 answers
Changing the icon shown in a taskbar group for a multi window application
On Windows 7 an application can control how to group their Windows on the taskbar. Windows has some default settings related to the executable, how the shortcut was created, the name of the program, etc. to apply some default grouping. The problem…
user181246
3
votes
1 answer
UWP Cannot open an external window after changing visibility of an inner element
I have a UWP app written in C#, where I need to open a second window.
Inside this second window, there is an element that I need to toggle the visibility of (in some cases).
Please find an MVCE here:…

Cristiano Ghersi
- 1,944
- 1
- 20
- 46
3
votes
1 answer
Creating two pygame screens using multiprocessing
I am trying to develop an app using pygame and I want to create a popup window.
I am trying to keep it all in one file, so I am using multiprocessing for this task.
I have two classes, the app and the popup window. Each one is inside a function that…
user14120696
3
votes
0 answers
How to properly design a multi-window application in Qt (PyQt)?
The most obvious approach for me is to declare each window (window, dialog or widget) in the constructor and call the show() method when needed. Something like this:
class MultiWindowApp():
def __init__(self):
self.window_1 =…

KarolBorkowski
- 145
- 1
- 9
3
votes
0 answers
How to make setLaunchBounds work with freeform windowed apps?
I'm writing an Android launcher in Kotlin. It should open apps in freeform mode. I expect the following piece of code to open an app on the left half of the screen. Instead, it opens the app in the middle of the screen at half size.
The app opens in…

René Wiersma
- 31
- 4
3
votes
1 answer
How to update the JFrame Content Pane from calling a method?
Okay currently I am trying to make a multi-window program.
And from seeing other forums, it seems for you to do that in Java JFrame you must update its content pane by adding the new JComponent(new window/layout/idk), set the current window…

Chuck
- 75
- 1
- 2
- 10
3
votes
1 answer
SDL2: two displays, two windows and fullscreen mode
I'm trying to create two windows on two displays. But I have a problem: the second window is displayed in full screen mode, but the first window is minimized, and I need to click on it on the taskbar to expand to full screen.
I create windows in…

loki
- 314
- 4
- 17
3
votes
2 answers
ALT-TAB always activates main window in WPF app with multiple owned windows
On Windows 7, .NET 4.0 I have a problem that can be reproduced by copying the following code into a blank WPF application generated by Visual Studio:
public MainWindow()
{
InitializeComponent();
Loaded += new…

Golvellius
- 1,928
- 2
- 13
- 16
2
votes
1 answer
How do I make a window the active window in a Cocoa multi window app?
I have a multi window Cocoa app, implemented using the techniques described in an answer to a previous question.
All works fine, however windows opened after the initial window come up and are shown front, but their state is not active (everything…

Roger
- 4,737
- 4
- 43
- 68
2
votes
3 answers
UWP AppWindow Get correct monitor/Display region
Idea is very simple open one or more windows in the app, save their size, position and monitor placement when closing the app, and then when they are opened again, every window should open on the same position, size and monitor they were closed on,…

Muhammad Touseef
- 4,357
- 4
- 31
- 75
2
votes
0 answers
How to disable pop-up view but not multi-window programatically in devices having this feature?
I am working on an App and wanted to implement a functionality such that the user can use the App in Multi-window but not in pop-up view.
I have both of these features available on my device LG G8x, Samsung devices also has these features.

ujjwal singh
- 21
- 1
2
votes
0 answers
Android Multi Window (Free-Form Mode) Resize Events
Stating an application with multi-window mode like below.
private void startApplication() {
Intent intent = getPackageManager().getLaunchIntentForPackage("com.example.comisotest2");
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
…

İsmail Kocacan
- 1,204
- 13
- 38