diff --git a/docs/html/guide/topics/manifest/application-element.jd b/docs/html/guide/topics/manifest/application-element.jd index df6f61a54e062..8a91ec8e82fd0 100644 --- a/docs/html/guide/topics/manifest/application-element.jd +++ b/docs/html/guide/topics/manifest/application-element.jd @@ -14,6 +14,7 @@ parent.link=manifest-intro.html android:hardwareAccelerated=["true" | "false"] android:icon="drawable resource" android:killAfterRestore=["true" | "false"] + android:largeHeap=["true" | "false"] android:label="string resource" android:logo="drawable resource" android:manageSpaceActivity="string" @@ -161,6 +162,19 @@ has finished processing its data during a full-system restore, it will be terminated.
+Most apps should not need this and should instead focus on reducing their overall memory usage for +improved performance. Enabling this also does not guarantee a fixed increase in available memory, +because some devices are constrained by their total available memory.
+To query the available memory size at runtime, use the methods {@link + android.app.ActivityManager#getMemoryClass()} or {@link + android.app.ActivityManager#getLargeMemoryClass()}.
+