making the edge of the scrollview fade when scrolling in android

前端 未结 3 1835
忘掉有多难
忘掉有多难 2020-12-08 06:30

I have a ScrollView with an image in it.

I want the edges of the ScrollView to make a fade effect when I scroll the image. I\'m not talking

3条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-08 07:06

    I am not sure if you this working, but here is what worked for me:

    
    

    and in your code, you can do the following

    ScrollView scroll = findById(); scroll.setFadingEdgeLength(150);
    

提交回复
热议问题