I am grabbing a few material design icons from here:
https://google.github.io/material-design-icons/#getting-icons
And I need a number of them to also be a little transparent 'gray'/'muted'.
I tried to create a drawable bitmap to define the alpha:
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/ic_info_outline_black_24dp"
android:alpha=".7">
</bitmap>
However this does not work.
Is the right answer to create multiple pngs with different levels of transparency? If so, any worries about apps getting unnecessarily big?