记忆似乎是一个很大的话题,我找不到具体的答案。我已经得到了堆中有多少可用的答案,并且我知道我应该使用多少。我需要答案如何编码以编程方式确定我的应用程序使用了多少内存?我使用了多少总内存?
问问题
3812 次
2 回答
3
这有效:
Debug.MemoryInfo memoryInfo = new Debug.MemoryInfo();
Debug.getMemoryInfo(memoryInfo);
String memMessage = String.format("App Memory: Pss=%.2f MB\nPrivate=%.2f MB\nShared=%.2f MB",
memoryInfo.getTotalPss() / 1024.0,
memoryInfo.getTotalPrivateDirty() / 1024.0,
memoryInfo.getTotalSharedDirty() / 1024.0);
Toast.makeText(this,memMessage,Toast.LENGTH_LONG).show();
Log.i("log_tag", memMessage);
于 2012-07-12T05:21:01.723 回答
2
使用top -d 1 -n 1
Android Shell 命令获取具有进程名称的所有进程列表或进程使用的内存,然后从系统的返回字符串中提取您的进程信息:
BufferedReader in = null;
try {
Process process = null;
process = Runtime.getRuntime().exec("top -n 1 -d 1");
in = new BufferedReader(new
InputStreamReader(process.getInputStream()));
String line ="";
String content = "";
while((line = in.readLine()) != null) {
content += line + "\n";
}
System.out.println(content);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
finally {
if(in != null) {
try {
in.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
你会得到字符串:
PID PPID USER STAT VSZ %MEM %CPU COMMAND
9673 9672 root R 712 0.1 0.0 top -d 1 -n 1
2489 2386 system S 369m 87.7 0.0 system_server
3101 2386 app_23 S 304m 72.3 0.0 com.android.browser
2581 2386 radio S 279m 66.3 0.0 com.android.phone
2585 2386 app_15 S 271m 64.4 0.0 com.android.launcher
于 2012-07-09T06:17:06.727 回答