Android examples for Hardware:Memory
get heap size via Large Memory Class
//package com.java2s; import android.app.ActivityManager; import android.content.Context; public class Main { /**/* www. j av a2 s. c o m*/ * @param context * @return */ public static int getLargeMemoryClass(Context context) { ActivityManager manager = (ActivityManager) context .getSystemService(Context.ACTIVITY_SERVICE); int heapSize = manager.getLargeMemoryClass(); return heapSize; } }