如何在Android中为布局背景设置不透明度(Alpha)?

时间:2016-11-20 15:58:17

标签: android opacity

我使用图像作为我的布局背景有没有办法在xml中不透明? 我使用android:alpha="2"但没有任何事情发生!

1 个答案:

答案 0 :(得分:0)

试试这个:

View backgroundImage = findViewById(R.id.background_image);
Drawable background = backgroundImage.getBackground();
background.setAlpha(80);