January 2012
Intermediate to advanced
282 pages
7h 4m
English
Android defines several APIs you can use to learn about how much memory is available on the system and how much is being used:
TIP: Set android:largeHeap to true in your application's manifest file to use a large heap. This attribute was introduced in Android 3.0. Note that there is no guarantee the large heap is any larger than the regular heap. You should try hard to prevent your application from having to depend on this setting.
Listing 4–21 shows how to use the two getMemoryInfo() methods.
Listing 4–21. Calling