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

@@ -0,0 +1,12 @@
package android.app;
import android.content.Context;
public class ATLKeyboardDialog extends Dialog {
@Override
protected native long nativeInit();
public ATLKeyboardDialog(Context context) {
super(context);
}
}

View File

@@ -15,7 +15,7 @@ import android.view.Window;
public class Dialog implements Window.Callback, DialogInterface {
protected long nativePtr;
private native long nativeInit();
protected native long nativeInit();
private native void nativeSetTitle(long ptr, String title);
private native void nativeSetContentView(long ptr, long widget);
private native void nativeShow(long ptr);