-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
SVGImageView doesn't properly scale the image. Even if w o h are changed, it
seems that only takes w and preserves aspect ratio
SVGImageView siv = new SVGImageView(this);
siv.setImageResource(R.drawable.image_svg);
int w=100;
int h=100;
RelativeLayout.LayoutParams rllp = new RelativeLayout.LayoutParams(w,h);
siv.setLayoutParams(rllp);
Original issue reported on code.google.com by thaedne...@gmail.com on 7 Jul 2014 at 10:06
Attachments: