我正在编写一个 android 应用程序,显示一些关于 cpu、内存等的信息。我怎样才能在屏幕上显示这些信息?用textview还是其他方式?
问问题
2193 次
1 回答
2
您可以使用此功能并将其显示在TextView
private float readCPUUsage() {
try {
RandomAccessFile reader = new RandomAccessFile("/proc/stat", "r");
String load = reader.readLine();
String[] toks = load.split(" ");
long idle1 = Long.parseLong(toks[5]);
long cpu1 = Long.parseLong(toks[2]) + Long.parseLong(toks[3]) + Long.parseLong(toks[4])
+ Long.parseLong(toks[6]) + Long.parseLong(toks[7]) + Long.parseLong(toks[8]);
try {
Thread.sleep(360);
} catch (Exception e) {}
reader.seek(0);
load = reader.readLine();
reader.close();
toks = load.split(" ");
long idle2 = Long.parseLong(toks[5]);
long cpu2 = Long.parseLong(toks[2]) + Long.parseLong(toks[3]) + Long.parseLong(toks[4])
+ Long.parseLong(toks[6]) + Long.parseLong(toks[7]) + Long.parseLong(toks[8]);
return (float)(cpu2 - cpu1) / ((cpu2 + idle2) - (cpu1 + idle1));
} catch (IOException ex) {
ex.printStackTrace();
}
return 0;
}
有关更多信息,请参阅如何在 android 中获取内存使用情况和 CPU 使用情况?
编辑
final Runnable r = new Runnable()
{
public void run()
{
tv.setText(" "+readCPUUsage());
handler.postDelayed(this, 1000);
}
};
handler.postDelayed(r, 1000);
于 2013-05-22T12:48:02.390 回答