Put invisible ListView background color when using the scroll bar

1

In my application it has a listview and when I roll the scroll bar the background turns white, I wanted to leave it invisible, with no color leaving only the color that is already at the bottom of the application, does anyone know?

    
asked by anonymous 18.11.2014 / 18:53

1 answer

0

You need to have in your XML the LisvView parameter:                   android:listSelector="@android:color/transparent" and also the parameter:   android:cacheColorHint="@android:color/transparent"

    
18.11.2014 / 21:15