How can I make an image transparent on Android?

后端 未结 12 1516
春和景丽
春和景丽 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:38

    The method setAlpha(int) from the type ImageView is deprecated.

    Instead of

    image.setImageAlpha(127);
    //value: [0-255]. Where 0 is fully transparent and 255 is fully opaque.
    

提交回复
热议问题