I was just wondering if there was a way to change the opacity of the background image for a View (ie. TextView, etc.).
View
TextView
I know that I can se
This might make your Work simpler
View backgroundimage = findViewById(R.id.background); Drawable background = backgroundimage.getBackground(); background.setAlpha(80);
Alpha Values 0-255, 0 means fully transparent, and 255 means fully opaque
from: This Answer