Split Screen doesn't work

Which version of system do you use? Khadas official images, self built images, or others?

Khadas Android official image.

Hi, I hope you all doing good
There’s no “Split Screen” in Android, I tried to download a third-party app but with no luck!
Any solution please? Thank You.

1 Like

@sffminimal We will add this feature in the next version.

device/khadas$ git diff
--- a/kvim1s/overlay/frameworks/base/core/res/res/values/config.xml
+++ b/kvim1s/overlay/frameworks/base/core/res/res/values/config.xml
@@ -57,6 +57,11 @@
         <item>"wlan0"</item>
     </string-array>
 
+    <!-- True if the device supports split screen as a form of multi-window. -->
+    <bool name="config_supportsSplitScreenMultiWindow">true</bool>
+    <integer name="config_defaultUiModeType">4</integer>
+    <bool name="config_lockUiMode">true</bool>
+
     <!-- If supported, are dreams enabled? (by default) -->

vendor/amlogic/common$ git diff
--- a/apps/VendorOverlay/DroidOverlay/res/values/config.xml
+++ b/apps/VendorOverlay/DroidOverlay/res/values/config.xml
@@ -78,8 +78,8 @@
          STREAM_MUSIC as if it's on TV platform. -->
     <bool name="config_single_volume">true</bool>
 
-    <bool name="config_quickSettingsSupported">false</bool>
-    <bool name="config_supportsSplitScreenMultiWindow">false</bool>
+    <bool name="config_quickSettingsSupported">true</bool>
+    <bool name="config_supportsSplitScreenMultiWindow">true</bool>

Thank you very much!