Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have listview,when i am scroll listview that time listview element background color change to black.

I am find couple of hour but not getting solution.

I am uesd

android:cacheColorHint="@android:color/transparent"

or

android:cacheColorHint="#00000000"
share|improve this question

4 Answers

set the

android:cacheColorHint

to the color you used as a background to the ListViewItem

share|improve this answer
i am useing this way but not work. – Harshid Jan 25 at 5:16

You can use this code:

// you can use your color also
android:background="@android:color/transparent"
android:cacheColorHint="@android:color/transparent"

Both color should be same, then your problem will be solved.

Hope it will help you.

share|improve this answer
up vote 1 down vote accepted

In my case this is work fine

 <ListView
    android:id="@+id/list"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_margin="1dip"
    android:layout_weight="1"
    android:background="#ffffff"
    android:choiceMode="singleChoice" 
    android:cacheColorHint="@android:color/transparent"
    android:scrollingCache="false"
    android:fastScrollEnabled="true">
</ListView>

One of the developer says you have to used this 2 property compulsory

    android:cacheColorHint="@android:color/transparent"
    android:scrollingCache="false"
share|improve this answer

Add following attributes to your listview inside xml layout.

android:scrollingCache="true"
android:cacheColorHint="#ffffff"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.