Android Layout background alpha

前端 未结 4 1338
遥遥无期
遥遥无期 2021-01-31 18:26

Hi I have a layout which I\'m using to fill my page and I have to set a background image held in my drawable folder in that layout.

I want to then set the <

4条回答
  •  臣服心动
    2021-01-31 19:06

    You Can Set Alpha for Drawables not Views ! You Can get background as a drawable and do like this :

    View backgroundimage = (View) findViewById(R.id.background);
    backgroundimage.getBackground().setAlpha(80);
    

提交回复
热议问题