Android错误应用程序崩溃+日志猫

时间:2017-04-29 21:41:11

标签: java android

Caused by: java.lang.OutOfMemoryError: Failed to allocate a 74649612 byte allocation with 16776544 free bytes

感谢您的帮助:))

编辑:

解决了问题
android:largeHeap="true"

1 个答案:

答案 0 :(得分:1)

它看起来是一个记忆错误。

 Caused by: java.lang.OutOfMemoryError: Failed to allocate a 74649612 byte allocation with 16776544 free bytes

在清单中使用android:largeHeap =“true”代码

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:largeHeap="true"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">