This is very likely to break in future platform updates.
On Tue, May 5, 2009 at 7:53 AM, rezar <[email protected]> wrote:
>
> You can use output of the top command, for your process
> Here is what I did:
>
> Runtime runtime = Runtime.getRuntime();
> Process process;
> String res = "-0-";
> try {
> String cmd = "top -n 1";
> process = runtime.exec(cmd);
> InputStream is = process.getInputStream();
> InputStreamReader isr = new InputStreamReader(is);
> BufferedReader br = new BufferedReader(isr);
> String line ;
> while ((line = br.readLine()) != null) {
> String segs[] = line.trim().split("[ ]+");
> if (segs[0].equalsIgnoreCase([Your Process
> ID])) {
> res = segs[1];
> break;
> }
> }
> } catch (Exception e) {
> e.fillInStackTrace();
> Log.e("Process Manager", "Unable to execute top
> command");
> }
>
> On May 4, 4:02 pm, Donald_W <[email protected]> wrote:
> > Hello,
> >
> > How can I get/calculate current process CPU usage? ActivityManager
> > provides method that returns a list of all active processes (list of
> > RunningAppProcessInfo), but that class doesn't provide any CPU usage
> > information.
> >
> > Thanks in advance,
> > Tomek
> >
>
--
Dianne Hackborn
Android framework engineer
[email protected]
Note: please don't send private questions to me, as I don't have time to
provide private support, and so won't reply to such e-mails. All such
questions should be posted on public forums, where I and others can see and
answer them.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---