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

@@ -2129,4 +2129,6 @@ public class View implements Drawable.Callback {
public void setAnimation(Animation animation) {}
public boolean performAccessibilityAction(int action, Bundle arguments) { return false; }
public boolean isDirty() { return false; }
}

View File

@@ -61,6 +61,10 @@ public class ViewPropertyAnimator {
return this;
}
public ViewPropertyAnimator translationXBy(float translationX) {
return this;
}
public void start() {
new Handler().postDelayed(new Runnable() {