Alpha-gradient on Android

前端 未结 4 1045
梦谈多话
梦谈多话 2020-12-08 21:40

I need to create an alpha-gradient on the edge of the ImageView. Preferably using only XML.

Image for example

4条回答
  •  甜味超标
    2020-12-08 22:11

    For transparency :

    android:startColor="@null"
    

    Or you can use a 8-digit hex color like that :

    android:startColor="#FF000000"
    

    The first two FF are for the alpha of the color, 00 is fully transparent and FF opaque

提交回复
热议问题