I'm using pixate and all works fine but for ListView the scrolling is not fluent. If I remove the PixateFreestyle.init(this);
the list has a fluent scroll.
I have added the StrictMode in order to see performance tips and I can see:
StrictMode policy violation; ~duration=139 ms: android.os.StrictMode$StrictModeDiskReadViolation: policy=23 violation=2
I guess that Pixate is reading the css file for each item of the list and this does that the list has a bad performance.
Does someone have the same problem or know some related issue?
Thanks in advance
EDIT
My problem was that in the adapter I was using 2 types of rows so I was using bad the cache. This tutorial helped me a lot: http://logc.at/2011/10/10/handling-listviews-with-multiple-row-types/
The problem was mine so +1 To Pixate
Thanks for the help.