api-impl: misc additions for different apps

This commit is contained in:
Julian Winkler
2025-06-18 09:02:08 +02:00
parent d898966e04
commit bf5eb099bd
20 changed files with 109 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
package android.graphics;
public class BlurMaskFilter extends MaskFilter {
public static enum Blur {
NORMAL,
};
public BlurMaskFilter(float radius, Blur blur) {}
}

View File

@@ -0,0 +1,4 @@
package android.graphics;
public class MaskFilter {
}

View File

@@ -339,6 +339,8 @@ public class Paint {
public boolean hasGlyph(String text) { return false; }
public MaskFilter setMaskFilter(MaskFilter filter) { return filter; }
private static native long native_create();
private static native long native_clone(long paint);
private static native void native_recycle(long paint);