Can anyone explain me that how can i get the configuration of Android device programatically in my app. Also how can I get the other device related information like Battery usage,CPU load,RAM usage,Memory details etc programatically. Thanks in advance.
Asked
Active
Viewed 3,110 times
2 Answers
4
This will get you started for the battery: Android Battery in SDK
And this will get you a bunch of system properties (look at the getProperty method): http://developer.android.com/reference/java/lang/System.html
Also these threads on memory management will provide a place to start: Get Memory Usage in Android

Community
- 1
- 1

koopaking3
- 3,375
- 2
- 25
- 36
-
thanks koopaking3, for your reply. Can you also tell me that how can get the details of app installed in my device . – Dinesh Sharma Apr 06 '11 at 05:07
-
Details of your app or some other app on the device? – koopaking3 Apr 06 '11 at 13:55