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

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">
发布了8 篇原创文章 · 获赞 4 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/honey_angle_first/article/details/104008962