Questions tagged [split-screen]

Split screen is the visible division of the screen, traditionally in half, but also in several simultaneous images.

Split screen is the visible division of the screen, traditionally in half, but also in several simultaneous images.

https://en.wikipedia.org/wiki/Split_screen_(filmmaking)

81 questions
2
votes
1 answer

iOS split screen width after keyboard displays

I've just begun investigating support for split-screen multitasking in my Cordova app. So far the app displays and resizes fine on iPads in the simulator, but when I click on an edit field and the software keyboard is displayed, the value for 100%…
eb1
  • 2,897
  • 3
  • 31
  • 42
2
votes
1 answer

How to avoide call onCreate() when app goes to splitView

In my application there have one activity (MainActivity)and four fragment . when my app goes in splitView (Multi Window mode) the onCreate() method get called in MainActivity and that reason first fragment get loaded when i goes to multiWindow…
2
votes
2 answers

Getting "Split Screen or picture-in-picture is not supported for this app"

I am trying to support split screen feature in my app. Target SDK is 27 currently defaultConfig { applicationId "com.myvestige.vestigedeal" minSdkVersion 19 targetSdkVersion 27 versionCode 46 versionName…
Sapna Sharma
  • 460
  • 7
  • 22
2
votes
0 answers

Unable to disable app rotation in Multi-Window (split-screen) mode, Android

First of all, here are things I've done so far: (1) I handle screen rotation, orientation changes and Multi-Window related config changes inside my application. (2) I forbid all kinds of…
2
votes
2 answers

Disable split screen - shows " Full screen display"

I used android:resizeableActivity="false" in mainfest inside application tag inorder to disable the split mode for my application , but when i open my application the below dialog is shown at the bottom of my application on clicking "Full screen…
Amrutha Saj
  • 1,408
  • 16
  • 35
2
votes
0 answers

Language changing to default English when the application in split screen mode

In my application,I have given three languages option for the user. When user select the language the view is changing to that language mode.But when user trying to split the screen the language is resetting to default English mode.How can I handle…
2
votes
1 answer

vertical split-screen custom shape

I want to make a vertical split-screen with a custom shape, like in my attached image But it must be cross browser supported. I tried with a clipping path, but that's not supported in FireFox, so I tried with CSS transform, but my background also…
pagol
  • 507
  • 9
  • 27
2
votes
1 answer

iPad Split Screen causes Drawer to be dark

I'm using an MMDrawerController to have a right-side drawer on my app. This works very well normally, but something gets weird when displayed in Split Screen on an iPad. Here is a picture of the app with the right-side drawer open. You can see the…
Kenny Wyland
  • 20,844
  • 26
  • 117
  • 229
2
votes
0 answers

AvcaptureSession enabled during Splitscreen

How do i keep AVCaptureSession running during splitscreen, since AVCapture throws following notification AVCaptureSessionInterruptionReasonVideoDeviceNotAvailableWithMultipleForegroundApps when the app is opened in splitscreen and at that point…
Sumit Kumar Saha
  • 799
  • 1
  • 12
  • 25
2
votes
1 answer

GNU screen close windows when command terminates

I am using screen to show different logs in a split-screen. I would like to un-split the screen automatically when the process ends, or at least switch to the next active window. Now, when I close a program, the screen remains blank, unless I switch…
G B
  • 2,951
  • 2
  • 28
  • 50
2
votes
1 answer

Android SplitScreen orientation

I have an issue. I have a method which checks if screen is in landscape mode: private boolean isLandscape() { final Resources resources = getResources(); return resources != null && resources.getConfiguration() != null &&…
Andrii Abramov
  • 10,019
  • 9
  • 74
  • 96
2
votes
2 answers

Matlab - combine two videos into a single split-screen video

I have 2 videos I would like to play side by side in a split screen. They are same duration and dimensions. I found a code developed few years back to do the job. The problem is, it is full of errors maybe due to the fact I am using a newer Matlab…
Mosawi
  • 197
  • 2
  • 16
1
vote
0 answers

startActivities to start a split screen is not working for Android 13 anymore

I used to launch split screen with two of my activities using the following code: @RequiresApi(28) fun launchSplitScreenMode(parent: FragmentActivity, intentTop: Intent, intentBottom: Intent) { with(parent) { …
M. Usman Khan
  • 3,689
  • 1
  • 59
  • 69
1
vote
0 answers

Did split screen (multi window) change status bar behavior with Android 11

I've been building an instrument cluster app that supports multi window (so you can split screen with navigation or media). For Android 6-10 I have no issues by making the following changes upon entering splitscreen mode: if…
osunick
  • 11
  • 2
1
vote
0 answers

How can I disable multiwindow mode for app Android

By setting this android:resizeableActivity="false" flag just gives a message that "App may not work in split mode" . But the app still goes to the split screen mode. I used this tag like this ...…