How to put black transparent on image in android

前端 未结 6 2267
日久生厌
日久生厌 2021-02-09 09:46

I\'ve a image where i would like to add black transparent at bottom to show the text details. From the server i will get the normal images which i would like to convert it like

6条回答
  •  醉酒成梦
    2021-02-09 09:56

    You can use alpha attribute

    android:alpha="0.0" thats invisible
    android:alpha="0.5" see-through
    android:alpha="1.0" full visible
    

提交回复
热议问题