2

我在显示一个显示所有已安装应用程序的对话框时得到了这个

E/AndroidRuntime( 1148): java.lang.OutOfMemoryError
E/AndroidRuntime( 1148):        at android.graphics.BitmapFactory.nativeDecodeAsset(Native Method)
E/AndroidRuntime( 1148):        at android.graphics.BitmapFactory.decodeStream(BitmapFactory.java:596)
E/AndroidRuntime( 1148):        at android.graphics.BitmapFactory.decodeResourceStream(BitmapFactory.java:444)
E/AndroidRuntime( 1148):        at android.graphics.drawable.Drawable.createFromResourceStream(Drawable.java:832)
E/AndroidRuntime( 1148):        at android.content.res.Resources.loadDrawable(Resources.java:2988)
E/AndroidRuntime( 1148):        at android.content.res.Resources.getDrawable(Resources.java:1558)
E/AndroidRuntime( 1148):        at android.app.ApplicationPackageManager.getDrawable(ApplicationPackageManager.java:712)
E/AndroidRuntime( 1148):        at android.content.pm.PackageItemInfo.loadIcon(PackageItemInfo.java:149)
E/AndroidRuntime( 1148):        at android.content.pm.ComponentInfo.loadDefaultIcon(ComponentInfo.java:167)
E/AndroidRuntime( 1148):        at android.content.pm.PackageItemInfo.loadIcon(PackageItemInfo.java:154)
E/AndroidRuntime( 1148):        at android.content.pm.ResolveInfo.loadIcon(ResolveInfo.java:226)

在对话框中,我正在遍历 a并通过以下List方式ResolveInfo加载应用程序图标:

Drawable app_icon = allappslist.get(i).loadIcon(context.getPackageManager()));

但这有时会产生上面的错误......

4

2 回答 2

1

我在Crashes & ANRs报告中从 Google Developer Console 得到了这个问题: java.lang.OutOfMemoryError: Failed to allocate a 1048588 byte allocation with 250994 free bytes and 245KB until OOM

无论如何,由于我的应用程序还获取了所有已安装的应用程序,因此我做了几件事。

1- 使用LruCache类来缓存所有位图,你也可以使用这个类,我在 StackOverFlow 的答案中也找到了:

import android.support.v4.util.LruCache;

//This class to cache bitmap apps icon
public class Cache {

    private static Cache instance;
    private LruCache<Object, Object> lru;

    //------------------------------------------------------------------------//
    private Cache() {
        lru = new LruCache<>(5 * 1024 * 1024) //Max is 5MB;
    }
    //------------------------------------------------------------------------//
    public static Cache getInstance() {
        if (instance == null) {
            instance = new Cache();
        }
        return instance;
    }
    //------------------------------------------------------------------------//
    public LruCache<Object, Object> getLru() {
        return lru;
    }
}

2-使用减小应用程序图标尺寸Bitmap.createScaledBitmap,这将减小它的大小,更多细节


检查缓存并获取位图的代码片段:

Object appBitmap = Cache.getInstance().getLru().get(this.packageName);
if(appBitmap == null){
    Drawable drawableAppIcon = packageInfo.applicationInfo.loadIcon(packageManager);
    Bitmap bitmap = ((BitmapDrawable)drawableAppIcon).getBitmap();
    this.appIcon = Bitmap.createScaledBitmap(bitmap, 40,40,true);
    Cache.getInstance().getLru().put(this.packageName, this.appIcon);
} else{
    this.appIcon = (Bitmap)appBitmap;
}

祝你好运!

于 2016-03-03T20:14:53.963 回答
-1

你可以通过这个教程。这真的很有帮助。

http://developer.android.com/training/displaying-bitmaps/index.html

于 2013-11-11T17:19:50.800 回答