获取Android系统默认给每个app分配的内存上限
Posted 一点点征服
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取Android系统默认给每个app分配的内存上限相关的知识,希望对你有一定的参考价值。
ActivityManager activityManager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
int memorySize = activityManager.getMemoryClass();
测试结果:
华为mate7:192m
小米4:128m
红米:128m
三星SM-N7508v:96m
android4.0以后,可以通过在application节点中设置属性Android:largeHeap=”true”来突破这个上限。
以上是关于获取Android系统默认给每个app分配的内存上限的主要内容,如果未能解决你的问题,请参考以下文章