diff options
author | kmccormick <kmccormick@google.com> | 2013-03-15 15:33:13 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-03-15 15:33:13 -0700 |
commit | 3e32923425d20a77f5597af844758de395e69813 (patch) | |
tree | 78c978f685ed7f730ca3f1f7e4e422d1b715a35f /docs/html/training/displaying-bitmaps/index.jd | |
parent | 57eed5b416bd72d4111a0aead2f5c71f24fde07b (diff) | |
parent | 088aef975808497caf90f03b7eb0a0175d43e01f (diff) | |
download | frameworks_base-3e32923425d20a77f5597af844758de395e69813.zip frameworks_base-3e32923425d20a77f5597af844758de395e69813.tar.gz frameworks_base-3e32923425d20a77f5597af844758de395e69813.tar.bz2 |
am 088aef97: am 96a60639: am eb46c95c: am 4758e3e7: Merge "Doc update: Add memory mgt lesson to bitmaps class" into jb-mr1.1-docs
* commit '088aef975808497caf90f03b7eb0a0175d43e01f':
Doc update: Add memory mgt lesson to bitmaps class
Diffstat (limited to 'docs/html/training/displaying-bitmaps/index.jd')
-rw-r--r-- | docs/html/training/displaying-bitmaps/index.jd | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/html/training/displaying-bitmaps/index.jd b/docs/html/training/displaying-bitmaps/index.jd index b91172b..a828291 100644 --- a/docs/html/training/displaying-bitmaps/index.jd +++ b/docs/html/training/displaying-bitmaps/index.jd @@ -26,7 +26,7 @@ next.link=load-bitmap.html </div> </div> -<p>This class covers some common techniques for processing and loading {@link +<p>Learn how to use common techniques to process and load {@link android.graphics.Bitmap} objects in a way that keeps your user interface (UI) components responsive and avoids exceeding your application memory limit. If you're not careful, bitmaps can quickly consume your available memory budget leading to an application crash due to the dreaded @@ -70,6 +70,9 @@ exception:<br />{@code java.lang.OutofMemoryError: bitmap size exceeds VM budget <dd>This lesson walks you through using a memory and disk bitmap cache to improve the responsiveness and fluidity of your UI when loading multiple bitmaps.</dd> + <dt><b><a href="manage-memory.html">Managing Bitmap Memory</a></b></dt> + <dd>This lesson explains how to manage bitmap memory to maximize your app's performance.</dd> + <dt><b><a href="display-bitmap.html">Displaying Bitmaps in Your UI</a></b></dt> <dd>This lesson brings everything together, showing you how to load multiple bitmaps into components like {@link android.support.v4.view.ViewPager} and {@link android.widget.GridView} |