>
>
> Btw. I re-use the convert view etc. The performance degradation only
> happens when I style the output.
>
>
>
I had a similar problem. When I noticed the increased garbage collection in
my styled listview compared to non-styled, that manifested as choppy
scrolling and bad animation fps
I have an async image loader that loads images as they come into queue.
async task is pretty simple:
protected Void doInBackground(Void... params) {
try {
while (true) {
if (imageQueue.size() == 0) {
synchronized (imageQueue) {
imageQueue.wait();
}
}
if (imageQueue.size() > 0) {
// loading image
2 matches
Mail list logo