api-impl: add misc stubs/impls

This commit is contained in:
Mis012
2024-06-13 21:00:06 +02:00
parent 725df91af9
commit 81797c2667
13 changed files with 92 additions and 8 deletions

View File

@@ -15,4 +15,48 @@ public class WindowInsets {
public WindowInsets consumeSystemWindowInsets() {
return this;
}
public WindowInsets replaceSystemWindowInsets(int left, int top, int right, int bottom) {
return this;
}
public int getSystemWindowInsetLeft() {
return 0;
}
public int getSystemWindowInsetTop() {
return 0;
}
public int getSystemWindowInsetRight() {
return 0;
}
public int getSystemWindowInsetBottom() {
return 0;
}
public int getStableInsetLeft() {
return 0;
}
public int getStableInsetTop() {
return 0;
}
public int getStableInsetRight() {
return 0;
}
public int getStableInsetBottom() {
return 0;
}
public boolean isRound() {
return false;
}
public boolean isConsumed() {
return false;
}
}