我不知道 svg 图像和形状在 android 中的正确用法。但实际上我的问题是:我想使用 svg 图像作为我在 xml 中提到的组件的背景,并且想将 onCreate() 中的 svg 图片绑定到例如 editText。我已经看到如何将它用于布局,但不知道 editText 怎么样。在我使用此代码(如下)之后,svg 图像无法缩放和调整背景图像的大小。大小保持默认。
mBodyText = (EditText) findViewById(R.id.content);
SVG svg=SVGParser.getSVGFromResource(getResources(), R.drawable.notepad);
Drawable picDrawable=svg.createPictureDrawable();
mBodyText.setBackgroundDrawable(picDrawable);
我也使用 Draw 方法,但仍然没有。
感谢大家阅读