• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. H

    Apps Android Froyo 2.2 and Wifi

    Hi, By default, Wifi sleep policy is "Sleep on screen idle". With this policy, is it possible for a Background Service at a later time to wake up Wifi using some API? Am trying the following, but does not work: When my Background Service wakes up, it calls...
  2. H

    Apps API for total physical RAM

    Is there a way to get total physical RAM? I see there is 'ActivityManager.MemoryInfo.availMem' and 'MemTotal' field in 'proc/meminfo'. But that shows the Total Memory available to the system. https://groups.google.com/group/android-platform/browse_thread/thread/adb2fa9946275b73 Thanks...
  3. H

    Apps Per Process Network Stats

    Hi, Is there a way to get per process network statistics (transmit, receive bytes per process)? In the /proc filesystem, "/proc/<pid>/net/dev", there are counters for Tx and Rx. However they have the same values as the global counters in "/proc/net/dev". Any other ways of getting the...