我是靠谱客的博主 懵懂羊,最近开发中收集的这篇文章主要介绍Failed to allocate a 3112972 byte allocation with 2019776 free bytes and 1972KB until OOM,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
异常:java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: Failed to allocate a 3112972 byte allocation with 2019776 free bytes and 1972KB until OOM
OOM:Android 内存溢出(Java的这个异常是指,内存申请失败,前面那个数字是你想申请分配的内存字节,后面的那个数是实际可用的系统内存,显然小于前者。)
解决方法:在清单文件中添加两行代码:
android:hardwareAccelerated="false"
android:largeHeap="true"
eg:
<application
android:name=".application.MyShowApplication"
android:allowBackup="true"
android:hardwareAccelerated="false"
android:icon="@mipmap/cat"
android:label="@string/app_name"
android:largeHeap="true"
android:supportsRtl="true"
android:theme="@style/AppTheme">
最后
以上就是懵懂羊为你收集整理的Failed to allocate a 3112972 byte allocation with 2019776 free bytes and 1972KB until OOM的全部内容,希望文章能够帮你解决Failed to allocate a 3112972 byte allocation with 2019776 free bytes and 1972KB until OOM所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复