Obtain the remaining memory size and total size for Android

Source: Internet
Author: User
Public class meminfo {

// Obtain available memory
Public static long getmem_unused (context mcontext ){
Long mem_unused;
// Obtain activitymanager
Activitymanager AM = (activitymanager) mcontext. getsystemservice (context. activity_service );

// Create activitymanager. memoryinfo object

Activitymanager. memoryinfo MI = new activitymanager. memoryinfo ();
Am. getmemoryinfo (MI );

// Obtain the remaining memory space

Mem_unused = mi. availmem/1024;
Return mem_unused;
}

// Obtain the total memory
Public static long getmem_tolal (){
Long Mtotal;
/// Explain the kernel information read by proc/meminfo
String Path = "/proc/meminfo ";
String content = NULL;
Bufferedreader BR = NULL;
Try {
BR = new bufferedreader (New filereader (PATH), 8 );
String line;
If (line = Br. Readline ())! = NULL ){
Content = line;
}
} Catch (filenotfoundexception e ){
E. printstacktrace ();
} Catch (ioexception e ){
E. printstacktrace ();
} Finally {
If (BR! = NULL ){
Try {
BR. Close ();
} Catch (ioexception e ){
E. printstacktrace ();
}
}
}
// Beginindex
Int begin = content. indexof (':');
// Endindex
Int end = content. indexof ('k ');
// Truncate string Information

Content = content. substring (begin + 1, end). Trim ();
Mtotal = integer. parseint (content );
Return Mtotal;
}
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.