标签: android opacity
我使用图像作为我的布局背景有没有办法在xml中不透明? 我使用android:alpha="2"但没有任何事情发生!
android:alpha="2"
答案 0 :(得分:0)
试试这个:
View backgroundImage = findViewById(R.id.background_image); Drawable background = backgroundImage.getBackground(); background.setAlpha(80);