v3.2.4: added support for 'medium' display cutouts like dynamic island

This commit is contained in:
Evan Debenham
2025-09-05 16:31:48 -04:00
parent 291f11bc4e
commit 687b97c3a9
4 changed files with 68 additions and 13 deletions

View File

@@ -53,9 +53,9 @@ public abstract class PlatformSupport {
);
}
//returns a display cutout (if one is present) in device pixels, or null is none is present
//returns a display cutout (if one is present) in device pixels, or empty if none is present
public RectF getDisplayCutout(){
return null;
return new RectF();
}
public abstract void updateSystemUI();