gpt4 book ai didi

android - 确定 Activity 的可用堆空间(防止 OutOfMemoryException)

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:17:26 25 4
gpt4 key购买 nike

我读过 How do I discover memory usage of my application in Android?和一堆其他答案,但不能完全确定...

我有一个 Activity,它会将文件从外部存储加载到内存中,并在内存中执行一些解析/操作/等操作。在我加载它之前,我想猜测这样做是否会导致 OutOfMemoryException 并使 Activity 崩溃(我知道不可能有确切的答案,估计总比没有好。)

根据上面链接的答案,我想出了:

ActivityManager activityManager = (ActivityManager) getApplicationContext().getSystemService(ACTIVITY_SERVICE);
MemoryInfo memoryInfo = new ActivityManager.MemoryInfo();
activityManager.getMemoryInfo(memoryInfo);

int pid [] = {android.os.Process.myPid()};

android.os.Debug.MemoryInfo[] mi = activityManager.getProcessMemoryInfo(pid);

// calculate total_bytes_used using mi...

long available_bytes = activityManager.getMemoryClass()*1024*1024 - total_bytes_used;

所以,问题:

1)我疯了吗?
2) 如何将MemoryInfo 对象的值加总以估计 Activity/任务的堆使用情况? (上面的链接给出了 pss/private-dirty/shared-dirty 的概述,但没有足够的信息来猜测如何做总数。)
3)Debug是一直存在还是只在调试时存在?
4)有没有更聪明的方法?

像这样的答案:Two questions about max heap sizes and available memory in android似乎暗示没有比这更好的方法了?

我知道使用更少的内存是一件好事,我也是。我很想知道如何在这里进行防御性编码。只是等待异常才知道您的内存不足,这似乎很奇怪。

谢谢!

最佳答案

您可以引用此链接.. 对您面临的同一问题的完整研究。 OOMRESEACH

关于android - 确定 Activity 的可用堆空间(防止 OutOfMemoryException),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5684461/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com