Add some methods needed for androidx preferences

This commit is contained in:
Julian Winkler
2024-02-04 08:08:49 +01:00
parent 850fd2f076
commit aa56f3fb81
9 changed files with 65 additions and 3 deletions

View File

@@ -129,6 +129,8 @@ public class Drawable {
BitmapDrawable drawable = new BitmapDrawable();
drawable.inflate(resources, parser, parser, null);
return drawable;
} else if ("transition".equals(parser.getName())) {
return new Drawable();
}
return null;
}