Render themes: SVG resources on iOS

This commit is contained in:
Longri
2016-07-17 09:38:43 +02:00
committed by Emux
parent 166b0ab772
commit 4c5de7453d
34 changed files with 1919 additions and 3 deletions

View File

@@ -63,8 +63,12 @@ public class IosGraphics extends CanvasAdapter {
@Override
protected Bitmap decodeSvgBitmapImpl(InputStream inputStream) {
// TODO
return null;
try {
return new IosSvgBitmap(inputStream);
} catch (IOException e) {
log.error("decodeSvgImpl", e);
return null;
}
}
@Override