Is there really no XML attribute counterpart to setAlpha(int)
?
If not, what alternatives are there?
I am not sure about the XML but you can do it by code in the following way.
ImageView myImageView = new ImageView(this);
myImageView.setAlpha(xxx);
In pre-API 11:
In API 11+: