Android and setting alpha for (image) view alpha

It’s easier than the other response.
There is an xml value alpha that takes double values.

android:alpha="0.0" thats invisible

android:alpha="0.5" see-through

android:alpha="1.0" full visible

That’s how it works.

Leave a Comment