Questions tagged [multi-window]

176 questions
0
votes
1 answer

How to show different layout in MultiWindow mode for android?

Can we have some different layout in split window mode? And some different layout in full screen mode? Is it possible in android or not ?
wsun31
  • 91
  • 1
  • 11
0
votes
2 answers

Android Multi-window - Whats the purpose of android:resizeableActivity @ application level?

Starting from 7.0 android supports multiwindow mode. To have your app support multiwindow you need to mention this flag in your manifest. This flag is both available @ level and level. What's the purpose of having an activity specific flag at…
Akh
  • 5,961
  • 14
  • 53
  • 82
0
votes
0 answers

Multi window free form mode: Restrict vertical or horizontal resizing capacity o a window

I am trying to make a launcher application that launches some predefined set of apps in the multi-window Free form mode, and I have made some progress in doing that so far. However I am working on a new use case where I need to restrict the resizing…
0
votes
0 answers

How to stop the mainWindow while opened a new Window and get my Value

My problem is that i have an Main-Class with an button-click function, where if i click the button, the EntryBox will be opened and in the button-click function i want to create the folder too, but i dont know how to "stop" the mainWindow while the…
Banner24
  • 1
  • 2
0
votes
1 answer

How to change system view icons/style, functionality on android?

How to change view and functionality of multiwindow form(picture 1) like that done samsung(picture 2)? Do we need a launcher (just a specific system change) or do we need to compile a new ROM (if ROM, then where do we need to change the code and…
0
votes
1 answer

How to close the qt application when setQuitOnLastWindowClosed(false)

I wish to create a project including 3 windows: mainWindow, childWindow1, childWindow2, and only one window should show at a time. And I can switch between these windows. So I have three tasks: I place two buttons in the mainWindow and want to use…
Chen
  • 15
  • 1
  • 5
0
votes
2 answers

How to ShowDialog two windows sequentially with APP.xaml Startup function

private void AppToStart(object sender, StartupEventArgs e) { var startUpWindow=new StartUpWindow(); startUpWindow.ShowDialog(); var mainWindow = new MainWindow(); mainWindow.ShowDialog(); } I have wrote these commands to…
DiniMad
  • 49
  • 1
  • 9
0
votes
1 answer

Disable Multi-window for only one activity

I am trying to build an app with multi-window support, but there is an activity for which i want to disable multi-window support. I am targeting android version 26. So multi window is enabled by default. To disable multi-window support for a…
Zapper
  • 102
  • 7
0
votes
1 answer

Disable multi-window mode for Android

I am new to unity. I was trying to develop the game of space shooter for android device, and found that in Api24+ the multi-window is ruining the design. So I have tried to make a custom Manifest by adding the manifest to the directory…
0
votes
0 answers

Weird crash in multiwindow with Samsung devices

After searching a lot, I can't find a solution for this crash Exception Backtrace: 1 android.app.LoadedApk.forgetReceiverDispatcher LoadedApk.java, line 882 2 android.app.ContextImpl.unregisterReceiver ContextImpl.java, line 1294 3 …
moskis
  • 1,136
  • 10
  • 20
0
votes
2 answers

Disable close symbol in android free multi window screen

Can we disable close symbol( cross symbol) in Android(7.1) free multi-window screen in android AOSP? Please find attached screenshot.
GNK
  • 1,036
  • 2
  • 10
  • 29
0
votes
1 answer

Activity has being stopped

I have an activity which has fragment and android.intent.category.MULTIWINDOW_LAUNCHER | android.intent.category.LAUNCHER intent-filter. If I open the app firstly, it follows the following sequence : onCreate - onResume and activity works nicely…
propoLis
  • 1,229
  • 1
  • 14
  • 48
0
votes
1 answer

Multi window activity get current screen width

In my app, I make lots of UI dependent on current screen width. I have a helper method which does that perfectly: public static int getW() { int width = ((WindowManager)…
Anton Kizema
  • 1,072
  • 3
  • 13
  • 27
0
votes
1 answer

gravity="center" not working in multi-window in portrait

I am trying to center a view but its not. The root container is a RelativeLayout. This only happens when phone is in Portrait orientation multi-window mode. I have tried putting the view in LinearLayout, RelativeLayout and FrameLayout but nothing…
Ali
  • 839
  • 11
  • 21
0
votes
1 answer

Boot up in Free form mode for android O

I am working on Android O source code and I have a requirement to use the free form mode. Right now, if we want to go into free form mode then we need user's intervention. I want to avoid that step and directly go to free form mode. How can I…