Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4758e3e7 authored by kmccormick's avatar kmccormick Committed by Android (Google) Code Review
Browse files

Merge "Doc update: Add memory mgt lesson to bitmaps class" into jb-mr1.1-docs

parents e8319257 7571542c
Loading
Loading
Loading
Loading
−538 B (427 KiB)

File changed.

No diff preview for this file type.

+0 −4
Original line number Diff line number Diff line
@@ -3,10 +3,6 @@ parent.title=Displaying Bitmaps Efficiently
parent.link=index.html

trainingnavtop=true
next.title=Displaying Bitmaps in Your UI
next.link=display-bitmap.html
previous.title=Processing Bitmaps Off the UI Thread
previous.link=process-bitmap.html

@jd:body

+0 −2
Original line number Diff line number Diff line
@@ -3,8 +3,6 @@ parent.title=Displaying Bitmaps Efficiently
parent.link=index.html

trainingnavtop=true
previous.title=Caching Bitmaps
previous.link=cache-bitmap.html

@jd:body

+4 −1
Original line number Diff line number Diff line
@@ -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}
+1 −3
Original line number Diff line number Diff line
@@ -3,8 +3,6 @@ parent.title=Displaying Bitmaps Efficiently
parent.link=index.html

trainingnavtop=true
next.title=Processing Bitmaps Off the UI Thread
next.link=process-bitmap.html

@jd:body

Loading