add some stubs needed because of previous commits

Since we now call draw() on View subclasses, we reach some new
codepaths which need new stubs
This commit is contained in:
Julian Winkler
2024-05-19 15:27:43 +02:00
parent 53d6714a0d
commit fdec418102
7 changed files with 23 additions and 2 deletions

View File

@@ -252,6 +252,10 @@ public class Drawable {
protected void onBoundsChange(Rect bounds) {}
public void setDither(boolean dither) {}
public void setAutoMirrored(boolean mirrored) {}
protected static native long native_paintable_from_path(String path);
protected native long native_constructor();
protected native void native_invalidate(long paintable);