Android系统信息查看方法详解
2010-05-19 16:15:00 来源:WEB开发网initProperty("java.home", "java.home");
}
private void initProperty(String description,
String propertyStr) {
if (buffer == null) {
buffer = new StringBuffer();
}
buffer.append(description).append("--->:");
buffer.append(System.getProperty(propertyStr)).
append(" ");
}
Android系统信息中内存情况查看
private void getMemoryInfo() {
final ActivityManager activityManager =
(ActivityManager) getSystemService(ACTIVITY_SERVICE);
ActivityManager.MemoryInfo outInfo =
new ActivityManager.MemoryInfo();
activityManager.getMemoryInfo(outInfo);
buffer.append(" 剩余内存:---->").append
(outInfo.availMem >> 10).append("k");
buffer.append(" 剩余内存:---->").append
(outInfo.availMem >> 20).append("M");
buffer.append(" 是否处于低内存状态:----->").
append(outInfo.lowMemory);
}
}
顺便提示一下,Android系统也提供了,Runtime类,但是该类获取到的信息Java虚拟机的使用情况信息。以上就是我们对Android 系统信息的具体查看方法教程。
更多精彩
赞助商链接