I have put an image in as the background of my android application with the following line of code:
android:background=\"@drawable/background\"
Try to use Drawable.setAlpha();
View backgroundImage = findViewById(R.id.background_image); Drawable background = backgroundImage.getBackground(); background.setAlpha(80);