How to have a transparent ImageButton: Android

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


        
19条回答
  •  暖寄归人
    2020-11-27 09:26

    I was already adding something to the background so , This thing worked for me:

       android:backgroundTint="@android:color/transparent"
    

    (Android Studio 3.4.1)

    EDIT: only works on android api level 21 and above. for compatibility, use this instead

       android:background="@android:color/transparent"
    

提交回复
热议问题