src/api-impl: misc stubbing

This commit is contained in:
Mis012
2022-12-27 17:21:21 +01:00
parent 696fa5a192
commit 2e4590c4d8
15 changed files with 226 additions and 52 deletions

View File

@@ -1,5 +1,15 @@
package android.hardware.display;
import android.os.Handler;
import android.view.Display;
public final class DisplayManager {
public static interface DisplayListener {}
public Display getDisplay(int dummy) {
return new Display();
}
public void registerDisplayListener(DisplayListener listener, Handler handler) {
}
}