1
In my application has a listview and when I roll the scroll bar the background turns white , wanted to make invisible , no color leave only the color that is already at the bottom of the application, someone knows?
1
In my application has a listview and when I roll the scroll bar the background turns white , wanted to make invisible , no color leave only the color that is already at the bottom of the application, someone knows?
0
You have to have it in your XML LisvView
the parameter:
android:listSelector="@android:color/transparent"
and also the parameter:
android:cacheColorHint="@android:color/transparent"
Browser other questions tagged android listview
You are not signed in. Login or sign up in order to post.
And if you don’t roll the bottom is transparent?
– Jorge B.
and yes, the background of my application is blue and an image and it has a border , then when it rolls the background turns white and cover the border
– Ilgner de Oliveira
print?
– Jorge B.
Look here I put the print
– Ilgner de Oliveira
you have in your XML
LisvView
the parameterandroid:listSelector="@android:color/transparent"
?– Jorge B.
Try to add as well
android:cacheColorHint="@android:color/transparent"
and then say how it turned out– Jorge B.
It worked , but it didn’t help much in one of my problems
– Ilgner de Oliveira
Because it didn’t help ?
– Jorge B.
helped , more and that even invisible the background the list was getting over the edge but put an android:paddingBottom="50dp" and it worked. Thank you very much
– Ilgner de Oliveira