How can I make an image transparent on Android?

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

    Set transparency using setAlpha(float alpha). The below code works for me were I used an alpha value in float, 0 - 1.

    • 0: Full Transparent
    • 0.5 - 50%: Transparent
    • 1: Full Opaque

      ImageView imageView = (ImageView) itemView.findViewById(R.id.imageView); imageView.setImageResource(mResources[position]); imageView.setAlpha(.80f);

提交回复
热议问题