Re: [android-developers] Re: Memory Info

2010-07-15 Thread Dianne Hackborn
Note that these numbers are pretty meaningless. On Wed, Jul 14, 2010 at 10:40 PM, chethan kumar wrote: > Go thru this API , you may get some information. > http://developer.android.com/reference/java/lang/Runtime.html > you have some methods like > > FreeMemory, TotalMemory & MaxMemory > > you c

Re: [android-developers] Re: Memory Info

2010-07-14 Thread chethan kumar
Go thru this API , you may get some information. http://developer.android.com/reference/java/lang/Runtime.html you have some methods like FreeMemory, TotalMemory & MaxMemory you could access in this way Runtime.getRuntime().freeMemory(); Runtime.getRuntime().totalMemory(); Runtime.getRuntime().ma

[android-developers] Re: Memory Info

2010-07-14 Thread aparna
I want totalphysicalmemory,availphysicalMemory,TotalStorageMemory ,AvailStorageMemory. On Jul 13, 11:11 pm, chethan kumar wrote: > Check out this > linkhttp://developer.android.com/reference/android/app/ActivityManager.Me... > it gives you memory info of the device. > Regards > Chethan > >

[android-developers] Re: Memory info problem

2009-03-01 Thread Anonymous Anonymous
*typo actman.getMemoryInfo(meminfo); On Mon, Mar 2, 2009 at 10:55 AM, Anonymous Anonymous < firewallbr...@googlemail.com> wrote: > Hi All, > > I am trying to re-use a function to get free memory available.But in case > of full condition getMemoryInfo() always returns a wrong value. > --