api-impl: add ATLKeyboardViewer to support launching IMEs

This commit is contained in:
Mis012
2025-03-28 19:51:23 +01:00
parent bb7eb461c8
commit bce91cc527
19 changed files with 792 additions and 8 deletions

View File

@@ -7,6 +7,11 @@ import android.os.IBinder;
public abstract class Service extends ContextWrapper {
/* HACK for InputMethodService */
public Service(Context baseContext) {
super(baseContext);
}
public Service() {
super(null);
}