How to have a transparent ImageButton: Android

后端 未结 19 1949
庸人自扰
庸人自扰 2020-11-27 08:56


        
19条回答
  •  执念已碎
    2020-11-27 09:36

    Programmatically it can be done by :

    image_button.setAlpha(0f) // to make it full transparent
    image_button.setAlpha(0.5f) // to make it half transparent
    image_button.setAlpha(0.6f) // to make it (40%) transparent
    image_button.setAlpha(1f) // to make it opaque
    

提交回复
热议问题