Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a ListView that uses a custom adapter. The custom adapter's getView uses all the recommended practices:

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    SuscriptionsViewsHolder holder;
    ItemInRootList item = mItemsInList.get(position);

    if (convertView == null) {
         convertView = mInflater.inflate(R.layout.label, null);

         holder = new SuscriptionsViewsHolder();
         holder.label = (TextView) convertView.findViewById(R.id.label_label);
         holder.icon = (ImageView) convertView.findViewById(R.id.label_icon);

        convertView.setTag(holder);
    } else {
        holder = (SuscriptionsViewsHolder) convertView.getTag();
    }

    String text = String.format("%1$s (%2$s)", item.title, item.unreadCount);
    holder.label.setText(text);
    holder.icon.setImageResource(item.isLabel ? R.drawable.folder : R.drawable.file );

    return convertView;
}

However when I scroll, it is sluggish because of heavy garbage collection:

GC_EXTERNAL_ALLOC freed 87K, 48% free 2873K/5447K, external 516K/519K, paused 30ms
GC_EXTERNAL_ALLOC freed 7K, 48% free 2866K/5447K, external 1056K/1208K, paused 29ms
GC_EXTERNAL_ALLOC freed <1K, 48% free 2866K/5447K, external 1416K/1568K, paused 28ms
GC_EXTERNAL_ALLOC freed 5K, 48% free 2865K/5447K, external 1600K/1748K, paused 27ms
GC_EXTERNAL_ALLOC freed <1K, 48% free 2865K/5447K, external 1780K/1932K, paused 30ms
GC_EXTERNAL_ALLOC freed 2K, 48% free 2870K/5447K, external 1780K/1932K, paused 26ms
GC_EXTERNAL_ALLOC freed 2K, 48% free 2870K/5447K, external 1780K/1932K, paused 25ms
GC_EXTERNAL_ALLOC freed <1K, 48% free 2870K/5447K, external 1780K/1932K, paused 26ms
GC_EXTERNAL_ALLOC freed 3K, 48% free 2870K/5447K, external 1780K/1932K, paused 25ms
GC_EXTERNAL_ALLOC freed <1K, 48% free 2870K/5447K, external 1780K/1932K, paused 29ms
GC_EXTERNAL_ALLOC freed <1K, 48% free 2870K/5447K, external 1780K/1932K, paused 29ms
GC_EXTERNAL_ALLOC freed <1K, 48% free 2871K/5447K, external 1780K/1932K, paused 28ms
GC_EXTERNAL_ALLOC freed <1K, 48% free 2871K/5447K, external 1780K/1932K, paused 26ms
GC_EXTERNAL_ALLOC freed <1K, 48% free 2870K/5447K, external 1780K/1932K, paused 27ms
GC_EXTERNAL_ALLOC freed <1K, 48% free 2870K/5447K, external 1780K/1932K, paused 29ms
GC_EXTERNAL_ALLOC freed <1K, 48% free 2870K/5447K, external 1780K/1932K, paused 26ms
GC_EXTERNAL_ALLOC freed <1K, 48% free 2870K/5447K, external 1780K/1932K, paused 34ms

What seems to be wrong?

EDIT @12:47 GMT:

In fact it's slightly more complicated than this. My app UI is based on 2 parts. One is the brain of a screen, creating the views, handling user input, etc. The other is a Fragment if the device has android 3.0, otherwise it's an Activity.

The GC happened on my Nexus One 2.3.3 device, so using the Activity. I don't have my Xoom with me to test the behaviour with a Fragment.

I could post the source if required, but let me try to explain it :

  • RootList is the brain of the UI. It contains :
    • a List<> of items that will be placed in the ListView.
    • a method that builds this list from a SQLite db
    • a custom BaseAdapter that contains basically only the getView method pasted above
  • RootListActivity is a ListActivity, which:
    • uses an XML layout
    • the layout has of course a listview with id android.id.list
    • the Activity callbacks are forwarded to the RootList class using an instance of RootList created when the activity is created (constructor, not onCreate)
    • in the onCreate, I call RootList's methods that will create the list of items, and set the list data to a new instance of my custom class derived from BaseAdapter

EDIT on may 17th @ 9:36PM GMT:

Here's the code of the Activity and the class that does the things. http://pastebin.com/EgHKRr4r

share|improve this question
Are you calling the GC yourself? I'm using far more complex objects in my ListViews and it's always been pretty smooth (in release mode). – Dave May 12 '11 at 12:27
What is result of the getViewTypeCount()? developer.android.com/reference/android/widget/… – ahmet alp balkan May 12 '11 at 12:31
@Dave: I'm not calling the GC myself. I pasted the whole getView method. @Ahmet Alp Balkan: getViewTypeCount() returns 1. – Bicou May 12 '11 at 12:46
How big are your icons (file-size wise)? – Joseph Earl May 12 '11 at 13:14
REALLY small. in hdpi it's 32x32 PNG, approx 1.1kByte – Bicou May 12 '11 at 13:16
show 2 more comments

8 Answers

up vote 17 down vote accepted

I found the issue. My XML layout for the activity was:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <include android:id="@+id/rootlist_header" layout="@layout/pre_honeycomb_action_bar" />

    <ListView android:id="@android:id/list"
        android:layout_below="@id/rootlist_header"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:textColor="#444444"
        android:divider="@drawable/list_divider"
        android:dividerHeight="1px"
        android:cacheColorHint="#00000000" />

</RelativeLayout>

If I remove the android:cacheColorHint="#00000000", the heavy GC is out, and the scrolling is smooth! :)

I don't really know why this parameter was set, because I don't need it. Maybe I copypasted too much instead of actually build my XML layout.

THANK YOU for your support, I really appreciate your help.

share|improve this answer
excellent, i was having this issue with the cacheColorHint attr also. Strange how setting it to transparent causes more GC?! – Dori Sep 19 '11 at 8:39
1  
Holy crap!!! The choppiness is gone after removing this evil cacheColorHint. The amount of GC_EXTERNAL_ALLOC has decreased 5-10-fold after removing just this value from the ListView XML definition. Garbage collection was going insane after I added BitmapFactory.Options inPurgeable = true to my Bitmap creation, and scrolling was insanely slow due to GC. You just saved me (and I even skipped this answer at first because I thought cacheColorHint was a property of each XML row, not the ListView itself!). That'll teach me to read closer. – Artem Russakovskii Sep 30 '11 at 3:13
1  
Looking at DDMS' allocation tracker would tell us what exactly is being allocated and collected. Setting the cacheColorHint to 0 should not cause memory to be allocated. I'd be curious to know on what version of Android or custom ROM you see this issue. – Romain Guy Sep 30 '11 at 23:25
It was on a Nexus One running the latest cyanogenmod nightly at that time, this should be Gingerbread for sure. – Bicou Oct 8 '11 at 13:32
1  
GC should not change if the allocations are the same. However, with a transparent color hint, the system has to do a lot of blending and the fades become more expensive. – Romain Guy Oct 21 '11 at 18:52
show 3 more comments

I also had a problem with the android:cacheColorHint="#00000000". I needed to use it although because I have a fixed background image.

I found that setting the following properties disables android's list view caching and the list scrolls smooth (the GC is not called that often any more):

android:scrollingCache="false"
android:animationCache="false"

Also if u want to get rid of the default selection color use this:

android:listSelector="#00000000"
share|improve this answer
Worked for me, but I think it's just a hack and the problem lies elsewhere. That being said, the accepted answer of removing cacheColorHint didn't work for me. Nor the String.format() thing – MichaƂ K Aug 20 '12 at 15:25

You should use DDMS and its Allocation Tracker to figure out exactly what's generating so many objects. Note however that String.format() is well known for generating large amounts of garbage.

http://developer.android.com/resources/articles/track-mem.html

share|improve this answer
That's a really good point, I don't know why I didn't think of DDMS before. However, the String.format is not the issue. If I comment out the setText and setImageResource, I end up with my list view populated with views, with no text and default icon. It is still choppy. The layout inflated is a simple relative layout containing a TextView and an ImageView. – Bicou May 20 '11 at 17:33
Even if I comment out the whole getView method and make it return (using convertView) a dumb TextView with default text like: tv.setText("test");, it is still choppy. I don't get it. – Bicou May 21 '11 at 11:43
I am having the same issue and its weird but removing this solved it. "android:cacheColorHint="#00000000"". I picked up the habit of using it to remove the weird dark background that appears when scrolling as explained by you [Romain Guy] at Google I/O. I will look into this more later after I finish my project. Oh by the way my items are just an object with an id and string as title. I am not doing any string manipulations. – achie Dec 2 '11 at 7:08

I actually went through your code and hacked a bit to make it work on my devices. I can confirm your ListAdapter is just fine, and that the problem is elsewhere.

This is what you do in the createDefaultLabelsList() method.

mItemsInList.clear();
ItemInRootList item;

do {
    item = new ItemInRootList();
    item.isLabel = true;
    item.id = c.getString(c.getColumnIndex(Labels.KEY_ID));
    item.title = Labels.label(item.id);
    //TODO: fix this label.label = c.getString(c.getColumnIndex(Labels.KEY_LABEL));
    item.unreadCount = c.getString(c.getColumnIndex(Labels.KEY_UNREAD_COUNT));
    mItemsInList.add(item);
} while (c.moveToNext());

It seems that not using a local variable in your loop is the cause to your performance problem, believe it or not. Replace that with:

mItemsInList.clear();

do {
    ItemInRootList item = new ItemInRootList();
    item.isLabel = true;
    item.id = c.getString(c.getColumnIndex(Labels.KEY_ID));
    item.title = Labels.label(item.id);
    //TODO: fix this label.label = c.getString(c.getColumnIndex(Labels.KEY_LABEL));
    item.unreadCount = c.getString(c.getColumnIndex(Labels.KEY_UNREAD_COUNT));
    mItemsInList.add(item);
} while (c.moveToNext());

and enjoy your blazing fast list! This solved it for me on htc hero (2.1) and Xoom (3.1) using a ListActivity.

That's how I would have done it in the first place - but I'm not exactly sure how this explains the sluggish behaviour with your original implementation.

I found this out because in order to reproduce your issue I had to replace the way you built the list, just created a list of with 10k random labels and watched it scroll really fast. I then noticed we didn't use the exact same loop, you were adding the same reference over and over again while I was adding 10k different references. I switched to your implementation and reproduced the bug.

share|improve this answer
Thank you for your answer. I don't think that's the problem because the List<> is only created once. Moreover, the method you are referring to is not the one called usually. In fact the list can be built in two ways: default order, or using a String that gives the order of the items. The app uses the ordered one if possible, which is likely to be the case at all times. When I scroll, this code is not executed, so that is not the issue. Thank you very much tough, I appreciate the time you spent trying to help me. – Bicou May 21 '11 at 11:41
it's worth a try, maybe? you're using basically the same idiom in your createOrderedLabelsList method. Try to create a new reference of Item inside the for loop and see how it goes? for (i = 0; i < nbItems; i++) { ItemInRootList item = new ItemInRootList(); ... – Thomas Philipakis May 21 '11 at 12:10
...and sorry for the comment spam - I'm very new to Stackoverflow :) - the thing is I think the ListView goes much faster when its underlying Collection is storing Pointers (my version) rather than Instances (your version). Now that I think about it, it makes sense and might well explain all the garbarge collection that's happening on your side. – Thomas Philipakis May 21 '11 at 12:16
I really don't understand. I basically removed all the code from my app: mItemsInList is not filled. I created a String[] containing 100 times "test". I created a layout that contains only a TextView, and used this adapter (not mine): new ArrayAdapter<String>(mActivity, R.layout.list_item, list);. Well, it still lags, it still does a lot of GC. So my initial adapter code was good, and the memory leak is somewhere else. I'm lost! – Bicou May 21 '11 at 12:21
I did not really reply to your answer: yes I did try your solution, it was definitely worth a try. But it didn't solve the issue so I tried to remove my adapter and use a complete dumb String[] adapter. So the instance/pointer stuff is not causing the GC. – Bicou May 21 '11 at 12:23
show 2 more comments

String text = String.format("%1$s (%2$s)", item.title, item.unreadCount); May be String.format() creates a lot of intermediate strings that pollutes the GC. Try StringBuilder and try to cache string it builds. Also as @tmho said try holder.icon.setImageDrawable(); instead of holder.icon.setImageResource(); because setImageResource() creates Drawable object each time. And each Drawable is about 50-60 bytes. It seems like heave bitmap isn't duplicated in this case, just drawable container but it may be enough to cause periodical GC calls.

share|improve this answer

try holder.icon.setImageBitmap(); instead of holder.icon.setImageResource();

share|improve this answer
This shouldn't be the issue, as the image will still be loaded in a similar way – Joe Simpson May 14 '11 at 19:23
worth a try imo, the view recycling code is correct, the objects shouldnt be destroyed.... the fact that his image size is 1.1kB and the garbage collector seems to have a lot around that size it leads me to believe that it is somewhere in the setImage creating an image object thus these objects will still have to be destroyed and not recycled into the next view, i reserve the right to be completely wrong tho, and if i am i would bet that the problem is not coming from this part of the code – tmho May 15 '11 at 0:54
I didn't try. But if I comment out the setImageResource line, it is still choppy. So that's not the problem. – Bicou May 20 '11 at 18:20
This is really a comment, not an answer to the question. You can always comment on your own posts, and once you have sufficient reputation you will be able to comment on any post. – Kartik Aug 9 '12 at 12:13

this

 String text = String.format("%1$s (%2$s)", item.title, item.unreadCount);

will make the GC called many times .

String.format() allocates some temporary memory in addition to the string it finally produces.

another way to do this.

using the StringBuilder class, like this.

StringBuilder builder = new StringBuilder(128);
@Override
public View getView(int position, View convertView, ViewGroup parent) {
    SuscriptionsViewsHolder holder;
    ItemInRootList item = mItemsInList.get(position);

    if (convertView == null) {
         convertView = mInflater.inflate(R.layout.label, null);

         holder = new SuscriptionsViewsHolder();
         holder.label = (TextView) convertView.findViewById(R.id.label_label);
         holder.icon = (ImageView) convertView.findViewById(R.id.label_icon);

        convertView.setTag(holder);
    } else {
        holder = (SuscriptionsViewsHolder) convertView.getTag();
    }    

String text = String.format("%1$s (%2$s)", item.title, item.unreadCount);

    builder.setLength(0);
    builder.append(item.title).append(" (").append(item.unreadCount).append(")");
    holder.label.setText(builder.toString());
    holder.icon.setImageResource(item.isLabel ? R.drawable.folder : R.drawable.file );

    return convertView;
}
share|improve this answer

I got similar question, my listview will show images from internet, and save them on SD card. When app launch later, local image will be used, then when i scroll the listview, lots of GC appear on logcat, and the view will stuns slightly.

I noticed that when app was launched first time, with images all from internet, the listview shows normally.

By the way, I used the android-imagedownloader from http://code.google.com/p/android-imagedownloader/, and add some local file cache code.

So here is my solution, when it loads image from local file, i will add the bitmap object to memory cache(a static HashMap), after that, when the listview scroll up and down, it will get image from memory cache, and lots GC did not happen again.

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.