Skip to content

Commit

Permalink
Use DisplayManagerGlobal instance
Browse files Browse the repository at this point in the history
Use the client instance to communicate with the DisplayManager server.

Fixes #3446 <#3446>

Signed-off-by: Romain Vimont <[email protected]>
  • Loading branch information
DerekWuYD authored and rom1v committed Aug 18, 2022
1 parent d19606e commit 3ab44e4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,10 @@
import com.genymobile.scrcpy.DisplayInfo;
import com.genymobile.scrcpy.Size;

import android.os.IInterface;

public final class DisplayManager {
private final IInterface manager;
private final Object manager; // instance of hidden class android.hardware.display.DisplayManagerGlobal

public DisplayManager(IInterface manager) {
public DisplayManager(Object manager) {
this.manager = manager;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,14 @@ public WindowManager getWindowManager() {

public DisplayManager getDisplayManager() {
if (displayManager == null) {
try {
Class<?> clazz = Class.forName("android.hardware.display.DisplayManagerGlobal");
Method getInstanceMethod = clazz.getDeclaredMethod("getInstance");
Object dmg = getInstanceMethod.invoke(null);
displayManager = new DisplayManager(dmg);
} catch (ClassNotFoundException | NoSuchMethodException | IllegalAccessException | InvocationTargetException e) {
throw new AssertionError(e);
}
displayManager = new DisplayManager(getService("display", "android.hardware.display.IDisplayManager"));
}
return displayManager;
Expand Down

0 comments on commit 3ab44e4

Please sign in to comment.