Guys, does it make sense to have 2 of the same vec...
# android-architecture
u
Guys, does it make sense to have 2 of the same vector drawable, with only different size? Do I get some perf benefit? Why do they even have size if its vector? Shouldnt I only chose image view size?
g
There 2 sizes: canvas size and default image size Without image size it would be hard to use it with wrap_content. You can just set size + scale type, we usually do this to avoid icon copy-pasting
u
Yea .. cool thanks