且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

是否有任何Android的绘制对象的设计师?

更新时间:2023-01-14 16:01:12

我会建议你使用Vector可绘制,这是由安卓5.0+原生支持。有一个 SVG到VectorDrawable转换,这样你就可以在你喜欢的编辑器创建SVG图像。

I would suggest you using Vector Drawables, which are natively supported by Android 5.0+. There is an SVG to VectorDrawable Converter, so you can create SVG images in your favorite editor.

BetterVectorDrawable 是VectorDrawable实现为Android 4.0以上版本对Android的5.0配置的回退行为+

BetterVectorDrawable is the VectorDrawable implementation for Android 4.0+ with configurable fall-back behavior on Android 5.0+.

SVG到VectorDrawable转换是SVG图像的批量转换到Android VectorDrawable XML资源文件。 在线版本存在。

SVG to VectorDrawable Converter is the batch converter of SVG images to Android VectorDrawable XML resource files. Online version exists.

链接指向自述,它提供了有关如何使用lib和转换器足够的信息。

Links point to readmes, which provide enough information on how to use the lib and the converter.