【发布时间】:2017-04-04 00:28:32
【问题描述】:
我使用图像作为我的布局背景有没有办法在 xml 中使其不透明?
我使用android:alpha="2",但什么也没发生!
【问题讨论】:
我使用图像作为我的布局背景有没有办法在 xml 中使其不透明?
我使用android:alpha="2",但什么也没发生!
【问题讨论】:
试试这个:
View backgroundImage = findViewById(R.id.background_image);
Drawable background = backgroundImage.getBackground();
background.setAlpha(80);
【讨论】: