How can I make an image transparent on Android?

后端 未结 12 1763
春和景丽
春和景丽 2021-01-30 19:52

I am using a linear layout and frame layout. In the linear layout I keep an image as background and in the frame layout I keep an imageView. In that imageView I give an image.

12条回答
  •  忘掉有多难
    2021-01-30 20:27

    For 20% transparency, this worked for me:

    Button bu = (Button)findViewById(R.id.button1);
    bu.getBackground().setAlpha(204);
    

提交回复
热议问题