Out of memory on a 11111-byte allocation

比眉伴天荒 2022-09-25 15:15 230阅读 0赞

这里写图片描述
在android中加载图片或者一个界面有很大的数据需要处理,经常会出现这种情况。

解决方法:打开androidmanifest.xml
在application节点,增加一个属性:largeHeap=”true”。

  1. <application
  2. android:name=".DemoApplication"
  3. android:allowBackup="true"
  4. android:icon="@drawable/ic_launcher"
  5. android:label="@string/app_name_id"
  6. android:theme="@style/AppTheme"
  7. android:largeHeap="true"
  8. tools:replace="android:label">

发表评论

表情:
评论列表 (有 0 条评论,230人围观)

还没有评论,来说两句吧...

相关阅读