Lets say we have 2 otherwise identical XML drawables:
<vector>
<path
...
android:fillColor="#80FFFFFF"/>
</vector>
vs
<vector>
<path
...
android:fillAlpha="0.5"
android:fillColor="#FFFFFF"/>
</vector>
They both appear to work the same, but is there any difference, e.g. compatibility or performance wise? The first approach is slightly more convenient in keeping @color definitions consistent.