Primeos |link| Official
PrimeOS is more than just an Android skin; it is a full-featured desktop experience tailored for various use cases:
: Use Android's DragAndDrop API + Intent.ACTION_SEND_MULTIPLE primeos
Unlike standard Android, PrimeOS features a Windows-like UI with a taskbar, start menu, and notification centre. PrimeOS is more than just an Android skin;
: One of its standout features is the DecaPro tool, which allows users to map keyboard and mouse controls for popular mobile games, providing a competitive edge on a larger screen. SNAP_MARGIN_DP) return new Rect(displayRect.width()/2
// Right half snap if (Math.abs(currentRect.right - displayRect.right) < SNAP_MARGIN_DP) return new Rect(displayRect.width()/2, displayRect.top, displayRect.right, displayRect.bottom);
// Extend PhoneWindowManager.java public class PrimeOSWindowManager extends PhoneWindowManager private static final int SNAP_MARGIN_DP = 30; private Rect calculateSnapRect(Rect currentRect, Rect displayRect) // Left half snap if (Math.abs(currentRect.left - displayRect.left) < SNAP_MARGIN_DP) return new Rect(displayRect.left, displayRect.top, displayRect.width()/2, displayRect.bottom);
(Modify WindowManagerService in Android framework)

