How to change the Opacity of an image in android?

By | November 29, 2011

Here is a simple function to change the opacity of a view in android.
Opacity is called alpha in android. so setAlpha(int) will do the job.

 ImageView img = (ImageView)findViewById(R.id.img);
 img.setAlpha(50);

The integer value may range from 0-255.

Leave a Reply

Your email address will not be published. Required fields are marked *