displayImePolicy
info
Added in Scrcpy 3.2
- Type:
"local" | "fallback" | "hide" | undefined - Default value:
undefined
Controls the policy for displaying the Input Method Editor (IME) during screen mirroring.
Values
"local": Show IME locally on the device"fallback": Use fallback IME behavior"hide": Hide the IME during screen mirroringundefined: Use the system default policy (no explicit policy set)
Related options
newDisplay: Creates a new virtual display for video streamingvdSystemDecorations: Controls whether the virtual display should include system decorations
Example
import { ScrcpyOptions3_2 } from "@yume-chan/scrcpy";
const options = new ScrcpyOptions3_2({
displayImePolicy: "hide", // Hide IME during screen mirroring
});