通过手势缩放图片时出现OOM现象

痞子三分冷 提交于 2020-01-16 20:52:32

java.lang.OutOfMemoryError: Failed to allocate a 240250012 byte allocation with 16777216 free bytes 

 

出现该类似的错误提示时,加如下两句加粗倾斜的代码ji解决即可

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:largeHeap="true"
    android:hardwareAccelerated="false"
    android:theme="@style/AppTheme">
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!