api-impl: misc stubs for K-9 Mail

This makes the non composeUI parts of K-9 Mail mostly functional.
This commit is contained in:
Julian Winkler
2025-01-12 10:42:51 +01:00
parent 554b4d346a
commit 64c5ebe5b6
14 changed files with 97 additions and 2 deletions

View File

@@ -595,4 +595,10 @@ public class Activity extends ContextThemeWrapper implements Window.Callback, La
public View getCurrentFocus() {
return null;
}
public void setProgressBarIndeterminateVisibility(boolean indeterminate) {}
public int getChangingConfigurations() {
return 0;
}
}

View File

@@ -61,6 +61,8 @@ public class Notification implements Parcelable {
return "Notification [" + title + ", " + text + ", " + actions + "]";
}
public String getGroup() {return null;}
public static class Builder {
private Notification notification;