在空活动中分配的内存

时间:2012-12-27 14:05:48

标签: java android

背景信息
我现在正在构建这个应用程序几个月,它几乎已经完成了。但是几天之后我就看到内存与日志一样

D/dalvikvm(25624): GC_CONCURRENT freed 1782K, 17% free 22647K/27143K, paused 15ms+16ms, total 80ms

正如您所看到的,我已经分配了大量内存。 因此,在搜索/阅读几天并使用MAT查找我的泄漏之后,我决定剥离应用程序并通过新项目中的活动来构建活动,以找出问题所在。

问题
所以现在我有一个新项目,我只打开一个活动。 我已经为项目添加了一些图像,但它们没有被使用。 我已经为Activity添加了一个Function,所以我可以在日志中看到使用过的内存。

代码
    @覆盖         public void onCreate(Bundle savedInstanceState){             super.onCreate(savedInstanceState);             的setContentView(R.layout.main);

        Log.d("HOME", "START");

        ShowMemoryStats("MAIN");
    }


    public void ShowMemoryStats(String activityName) {

        Double allocated = new Double(Debug.getNativeHeapAllocatedSize())
                / new Double((1048576));
        Double available = new Double(Debug.getNativeHeapSize()) / 1048576.0;
        Double free = new Double(Debug.getNativeHeapFreeSize()) / 1048576.0;
        DecimalFormat df = new DecimalFormat();
        df.setMaximumFractionDigits(2);
        df.setMinimumFractionDigits(2);

        Log.d("gettings", "debug. START ================================= "
                + activityName);
        Log.d("gettings",
                "debug.heap native: allocated " + df.format(allocated)
                        + "MB of " + df.format(available) + "MB ("
                        + df.format(free) + "MB free)");
        Log.d("gettings",
                "debug.memory: allocated: "
                        + df.format(new Double(Runtime.getRuntime()
                                .totalMemory() / 1048576))
                        + "MB of "
                        + df.format(new Double(
                                Runtime.getRuntime().maxMemory() / 1048576))
                        + "MB ("
                        + df.format(new Double(Runtime.getRuntime()
                                .freeMemory() / 1048576)) + "MB free)");

        Runtime rt = Runtime.getRuntime();
        long maxMemory = rt.maxMemory();
        Log.v("onCreate", "maxMemory:" + Long.toString(maxMemory));

        ActivityManager am = (ActivityManager) getSystemService(ACTIVITY_SERVICE);
        int memoryClass = am.getMemoryClass();
        Log.v("onCreate", "memoryClass:" + Integer.toString(memoryClass));

        Log.d("gettings", "debug. END ================================= "
                + activityName);
    }

结果
    调试。开始=================================主要     debug.heap native:分配2,41MB的2,59MB(0,18MB免费)     debug.memory:已分配:12,00MB的64,00MB(0,00MB免费)     maxMemory:67108864     memoryClass:64     调试。结束=================================主

所以现在我想知道造成这种内存使用的原因。 这是每个应用程序在启动时获得的某种默认内存吗?

感谢您的帮助。

更新[30-12-2012]
仍在努力解决这个问题,但有时我认为这不是问题。原因是当我使用AVD(Heapsize:24MB)时,我看到了完全不同的结果: enter image description here

与我在手机上调试应用程序(Galaxy S3)时相比: enter image description here

1 个答案:

答案 0 :(得分:0)

如果您说您正在使用MAT,那么您应该能够根据被认为可疑的线程搜索泄漏。

此外,如果您想从特定可疑对象获取特定数据,请尝试以下操作: http://www.javamex.com/classmexer

*我不确定Android API是否支持这种机制。