Saturday, February 11, 2012

Android Tracking Memory Allocations

Android Tracking Memory Allocations

Writing efficient mobile applications is not always straightforward. In particular, Android applications rely on automatic memory management handled by Dalvik's garbage collector, which can sometimes cause performance issues if you are not careful with memory allocations.
In a performance-sensitive code path, such as the layout or drawing method of a view or the logic code of a game, any allocation comes at a price. After too many allocations, the garbage collector will kick in and stop your application to let it free some memory. Most of the time, garbage collections happen fast enough for you not to notice. However, if a collection happens while you are scrolling through a list of items or while you are trying to defeat a foe in a game, you may suddenly see a drop in performance/responsiveness of the application. It's not unusual for a garbage collection to take 100 to 200 ms. For comparison, a smooth animation needs to draw each frame in 16 to 33 ms. If the animation is suddenly interrupted for 10 frames, you can be certain that your users will notice.
Most of the time, garbage collection occurs because of tons of small, short-lived objects and some garbage collectors, like generational garbage collectors, can optimize the collection of these objects so that the application does not get interrupted too often. The Android garbage collector is unfortunately not able to perform such optimizations and the creation of short-lived objects in performance critical code paths is thus very costly for your application.
To help you avoid frequent garbage collections, the Android SDK ships with a very useful tool called allocation tracker. This tool is part of DDMS, which you must have already used for debugging purposes. To start using the allocation tracker, you must first launch the standalone version of DDMS, which can be found in the tools/ directory of the SDK. The version of DDMS included in the Eclipse plugin does not offer you ability to use the allocation tracker yet.
Once DDMS is running, simply select your application process and then click the Allocation Tracker tab. In the new view, click Start Tracking and then use your application to make it execute the code paths you want to analyze. When you are ready, click Get Allocations. A list of allocated objects will be shown in the first table. By clicking on a line you can see, in the second table, the stack trace that led to the allocation. Not only you will know what type of object was allocated, but also in which thread, in which class, in which file and at which line. The following screenshot shows the allocations performed by Shelves while scrolling a ListView.

3 comments:

  1. Greate article. Keep posting such kind of information
    on your page. Im really impressed by your site.
    Thanks for sharing your thoughts on white tea benefits.
    Regards
    Feel free to surf my web blog - Chinese White Tea

    ReplyDelete
  2. I absolutely love your blog and find most of your post's to be precisely what I'm looking for.

    can you offer guest writers to write content for yourself?
    I wouldn't mind producing a post or elaborating on many of the subjects you write concerning here. Again, awesome web site!

    Also visit my web blog: cellulite treatment cream

    ReplyDelete
  3. massage treatment plan for tennis elbow

    my web blog :: stretches for tennis elbow treatment

    ReplyDelete

Check out this may be help you

Related Posts Plugin for WordPress, Blogger...