ATLKeyboard: Integrate with phosh and wayland IME

This commit is contained in:
Nikita Travkin
2025-03-22 00:13:41 +05:00
committed by Mis012
parent 80ec4bd02a
commit 882cd1b471
14 changed files with 1227 additions and 24 deletions

View File

@@ -29,6 +29,11 @@ public class ATLKeyboardViewer extends Activity {
System.exit(1);
}
ims.launch_keyboard();
boolean is_layershell = true;
if (extras.containsKey("layershell") && extras.getString("layershell").equals("off"))
is_layershell = false;
ims.launch_keyboard(is_layershell);
}
}