OOM(OutOfMemoryError) Android 開發常會遇到的一個問題
這次遇到的錯誤Log是:
(java.lang.OutOfMemoryError: Failed to allocate a 23970828 byte allocation with 2097152 free bytes and 2MB until OOM)
因這次是在準備要release前突然遇到這狀況,所以這次就用比較暴力一點的解法
關閉"硬體加速" 開啟"largeHeap"
<application android:allowBackup="true" android:hardwareAccelerated="false" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:largeHeap="true" android:supportsRtl="true" android:theme="@style/AppTheme">
即可暫時解決掉這個問題。
P.S.緊急應急得時候可以透過這種方式來處理,但歸根究底還是在程式開發的過程中效能處理上沒有寫好...
沒有留言:
張貼留言